Lines Matching refs:p_dir
4938 function privDirCheck($p_dir, $p_is_dir=false) argument
4945 if (($p_is_dir) && (substr($p_dir, -1)=='/'))
4947 $p_dir = substr($p_dir, 0, strlen($p_dir)-1);
4952 if ((is_dir($p_dir)) || ($p_dir == ""))
4959 $p_parent_dir = dirname($p_dir);
4963 if ($p_parent_dir != $p_dir)
4978 if (!@mkdir($p_dir, 0777))
4981 PclZip::privErrorLog(PCLZIP_ERR_DIR_CREATE_FAIL, "Unable to create directory '$p_dir'");
5421 function PclZipUtilPathReduction($p_dir) argument
5427 if ($p_dir != "") {
5429 $v_list = explode("/", $p_dir);
5449 $v_result = $p_dir;
5505 function PclZipUtilPathInclusion($p_dir, $p_path) argument
5511 if ( ($p_dir == '.')
5512 || ((strlen($p_dir) >=2) && (substr($p_dir, 0, 2) == './'))) {
5513 $p_dir = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_dir, 1);
5523 $v_list_dir = explode("/", $p_dir);