中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

php如何轉換成絕對路徑

發布時間:2021-12-02 10:03:16 來源:億速云 閱讀:164 作者:小新 欄目:編程語言

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

php轉換成絕對路徑的實現方法:1、創建一個PHP示例文件;2、通過“function sub_rel2abs(string $in_rel, string &$out_abs) {...}”方法將相對路徑轉換成絕對路徑即可。

本文操作環境:Windows7系統、PHP7.4版、DELL G3電腦

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 = [];   // pide 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:

0
/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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

师宗县| 八宿县| 潜山县| 屏山县| 太谷县| 陈巴尔虎旗| 横峰县| 木兰县| 墨玉县| 连南| 井研县| 利津县| 耿马| 宜丰县| 特克斯县| 丰县| 平邑县| 象州县| 锦屏县| 大关县| 桂平市| 自贡市| 浦县| 利川市| 阳江市| 汝州市| 南昌市| 太仓市| 嵩明县| 茶陵县| 清徐县| 清镇市| 南昌县| 永靖县| 福清市| 牟定县| 七台河市| 甘泉县| 涞水县| 海门市| 巴南区|