输入绝对路径,返回PHP中的相对路径

时间:2011-07-07 09:02:41

标签: php

  

可能重复:
  Getting relative path from absolute path in PHP

当包含PHP文件时,我经常使用像

这样的绝对路径
/etc/..../index.php

由于我没有服务器,如果管理员更改了文件的位置,可能无法找到这些文件。

但是尝试使用

找到正确的路径
..

每次更换文件都很麻烦。

是否有我可以通过的功能或脚本

/etc/..../index.php

让它返回我可以使用include的相对路径?

3 个答案:

答案 0 :(得分:1)

dirname(__FILE__)返回当前目录名称dirname(dirname(__FILE__)),将您带到一级等等,这是包含文件的最佳方式

答案 1 :(得分:1)

__DIR__.'/../../../index.php'

DIR 会返回调用它的文件的目录。

答案 2 :(得分:0)

Tomalak Geret'kal是对的,这里有一个算法:Getting relative path from absolute path in PHP

作为替代功能,您可以使用2003年PHP手册中http://iubito.free.fr发布的功能:

/**
 * Return the relative path between two paths / Retourne le chemin relatif entre 2 chemins
 *
 * If $path2 is empty, get the current directory (getcwd).
 * @return string
 */
function relativePath($path1, $path2='') {
if ($path2 == '') {
    $path2 = $path1;
    $path1 = getcwd();
}

//Remove starting, ending, and double / in paths
$path1 = trim($path1,'/');
$path2 = trim($path2,'/');
while (substr_count($path1, '//')) $path1 = str_replace('//', '/', $path1);
while (substr_count($path2, '//')) $path2 = str_replace('//', '/', $path2);

//create arrays
$arr1 = explode('/', $path1);
if ($arr1 == array('')) $arr1 = array();
$arr2 = explode('/', $path2);
if ($arr2 == array('')) $arr2 = array();
$size1 = count($arr1);
$size2 = count($arr2);

//now the hard part :-p
$path='';
for($i=0; $i<min($size1,$size2); $i++)
{
    if ($arr1[$i] == $arr2[$i]) continue;
    else $path = '../'.$path.$arr2[$i].'/';
}
if ($size1 > $size2)
    for ($i = $size2; $i < $size1; $i++)
        $path = '../'.$path;
else if ($size2 > $size1)
    for ($i = $size1; $i < $size2; $i++)
        $path .= $arr2[$i].'/';

return $path;
}