91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現php路徑轉換

發布時間:2020-08-01 14:31:02 來源:億速云 閱讀:150 作者:清晨 欄目:編程語言

這篇文章主要介紹如何實現php路徑轉換,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

php路徑轉換的方法:1、通過“function sub_rel2abs(string $in_rel, string &$out_abs)”方法將相對路徑轉換成絕對路徑;2、使用“abs2rel”方法將絕對路徑轉換成相對路徑。

如何實現php路徑轉換

PHP 相對路徑轉換為絕對路徑 realpath

* 相對路徑 -> 絕對路徑 realpath

<?php
/**
 * @param string $in_rel: relative directory
 * @param string $out_abs: absolute directory
 */
define('PATH_MAX', 255);
function sub_rel2abs(string $in_rel, string &$out_abs) {
    $i_rtn = 0;  // return value
    $ss_rel = "";  // for relative path build
    $st_fpos = 0;    // front separator index
    $sv_path = [];   // divide path to array
 
    $st_pos = strpos($in_rel, DIRECTORY_SEPARATOR);
    $npos = 0;
    while ($npos != $st_pos) {
        if ($st_pos != 0) {
            array_push($sv_path, substr($in_rel, $st_fpos, $st_pos - $st_fpos));
        }
// next...
        $st_fpos = $st_pos;   // set current pos to last pos
        $st_pos++;            // from next index
        $st_pos = strpos($in_rel, DIRECTORY_SEPARATOR, $st_pos);  // next separator index
    } // while ( $npos != $st_pos )
// final separator
    array_push($sv_path, substr($in_rel, $st_fpos));
 
    $lpc = 0;    // loop count
    $i_max = count($sv_path);
    while ($lpc < $i_max && 0 === $i_rtn) {
        $ss_rel .= $sv_path[$lpc];
// relative path => relative path
        $c_abs = realpath($ss_rel);
        if ($c_abs === false) {
            $i_rtn = -1;
        } else {
            $ss_rel = $c_abs;
            $i_rtn = 0;
        }
        $lpc++;
    } // while (count($sv_path)>0)
 
// normal ending
    if (0===$i_rtn) {
        $out_abs = $ss_rel;  // set converted path
    }
    return $i_rtn;
}
 
// test
$inDir = "/Users/Mch/Code/php/Directory";
is_dir($inDir) || mkdir($inDir, 0777, true);
 
$wd = __DIR__;
chdir($inDir);
 
$out = "";
echo sub_rel2abs("../../../eclipse-workspace/blog.zip", $out).PHP_EOL;
echo $out.PHP_EOL;
 
chdir($wd);
@rmdir($inDir);

output:

/Users/Mch/eclipse-workspace/blog.zip

  這里直接realpath就可以了,為什么多此一舉?

*  絕對路徑 -> 相對路徑

<?php
/**
 * $path相對于$base的相對路徑
 * @param string $base
 * @param string $path
 */
function abs2rel(string $base, string $path) {
    if (is_dir($base)) {
        $base = rtrim($base, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . ".";
    }
 
    $a = explode(DIRECTORY_SEPARATOR, $base);
    $b = explode(DIRECTORY_SEPARATOR, $path);
  
    $d = [];   // $path push
    $i = count($a)-1;
  
    $sliceEquals = function($a, $b, $j) {
        if ($j >= count($a) || $j >= count($b)) {
            throw new Exception('$j out of range');
        }
        for ($i = $j; $i >= 0; $i--) {
            if (strcmp($b[$i], $a[$i])!==0) {
                return false;
            }
        }
        return true;
    };
    // 找到a,b數組元素相同的下標
    while (array_pop($a)) {
        $i = count($a)-1;
        if (isset($b[$i])) {
            if ($sliceEquals($a, $b, $i)) {
                break;
            }
        }
        array_push($d, "..");
    }
    // 從首個不同元素開始
    for ($i+=1; $i < count($b); $i++) {
        array_push($d, $b[$i]);
    }
    return ".".DIRECTORY_SEPARATOR.implode(DIRECTORY_SEPARATOR, $d);
}

以上是如何實現php路徑轉換的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长宁区| 西和县| 温宿县| 莒南县| 麦盖提县| 东兰县| 介休市| 南涧| 玛多县| 土默特右旗| 南投市| 公主岭市| 昭觉县| 津市市| 盐城市| 玛多县| 乾安县| 荥经县| 喀喇沁旗| 高要市| 绥江县| 平乡县| 土默特左旗| 永登县| 加查县| 咸阳市| 封丘县| 新化县| 繁昌县| 福鼎市| 根河市| 阿拉善盟| 定州市| 平原县| 融水| 盐源县| 娄烦县| 图木舒克市| 镇原县| 巴楚县| 临颍县|