Lines Matching refs:p_path
3115 …function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) argument
3124 if ( ($p_path == "")
3125 || ( (substr($p_path, 0, 1) != "/")
3126 && (substr($p_path, 0, 3) != "../")
3127 && (substr($p_path,1,2)!=":/")))
3128 $p_path = "./".$p_path;
3131 if (($p_path != "./") && ($p_path != "/"))
3134 while (substr($p_path, -1) == "/")
3137 $p_path = substr($p_path, 0, strlen($p_path)-1);
3449 $p_path, $p_remove_path,
3497 function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) argument
3563 if ($p_path != '') {
3564 $p_entry['filename'] = $p_path."/".$p_entry['filename'];
5505 function PclZipUtilPathInclusion($p_dir, $p_path) argument
5516 if ( ($p_path == '.')
5517 || ((strlen($p_path) >=2) && (substr($p_path, 0, 2) == './'))) {
5518 $p_path = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_path, 1);
5525 $v_list_path = explode("/", $p_path);
5731 function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true) argument
5735 if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) {
5736 $p_path = substr($p_path, $v_position+1);
5739 if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) {
5740 $p_path = strtr($p_path, '\\', '/');
5743 return $p_path;