Lines Matching refs:p_path
3012 …public function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_… argument
3022 ($p_path == "")
3023 || ( (substr($p_path, 0, 1) != "/")
3024 && (substr($p_path, 0, 3) != "../")
3025 && (substr($p_path, 1, 2) != ":/"))
3027 $p_path = "./" . $p_path;
3030 if (($p_path != "./") && ($p_path != "/")) {
3032 while (substr($p_path, -1) == "/") {
3034 $p_path = substr($p_path, 0, strlen($p_path) - 1);
3344 $p_path,
3393 …public function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_option… argument
3450 if ($p_path != '') {
3451 $p_entry['filename'] = $p_path . "/" . $p_entry['filename'];
5311 function PclZipUtilPathInclusion($p_dir, $p_path) argument
5325 ($p_path == '.')
5326 || ((strlen($p_path) >= 2) && (substr($p_path, 0, 2) == './'))
5328 $p_path = PclZipUtilTranslateWinPath(getcwd(), false) . '/' . substr($p_path, 1);
5335 $v_list_path = explode("/", $p_path);
5530 function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter = true) argument
5534 if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) {
5535 $p_path = substr($p_path, $v_position + 1);
5538 if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0, 1) == '\\')) {
5539 $p_path = strtr($p_path, '\\', '/');
5542 return $p_path;