计算出两个文件的相对路径

Dearlv 2010-10-10 11:35:28
如 $a = ‘/a/b/c/d/e.php’; $b = ‘/a/b/12/34/c.php’;
计算出 c.php相对于e.php的相对路径应该是../../c/d
用PHP怎么来写?请高手帮忙
...全文
288 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
quzhongxiong 2010-10-11
  • 打赏
  • 举报
回复

$a = '/a/b/c/d/e.php';
$b = '/a/b/12/34/c.php';
getpathinfo($a, $b);
function getpathinfo( $a, $b ) {
$a2array = explode('/', $a);
$b2array = explode('/', $b);

$pathinfo = '';
$fileinfo = '';
for( $i = 0; $i <= count($a2array) - 2; $i++ ) {

$pathinfo .= $a2array[$i] != $b2array[$i] ? '../' : '';
if($a2array[$i] != $b2array[$i]) $fileinfo[] = $b2array[$i];
}
print_R($pathinfo.implode('/', $fileinfo));
}
standford 2010-10-11
  • 打赏
  • 举报
回复
学习了。
xuzuning 2010-10-11
  • 打赏
  • 举报
回复
$a = '/a/b/c/d/e.php';
$b = '/a/b/12/34/c.php';

$a1 = split('/', trim(dirname($a), '/'));
$b1 = split('/', trim(dirname($b), '/'));

foreach($a1 as $i=>$v) {
if($v == $b1[$i]) {
unset($a1[$i]);
unset($b1[$i]);
}else break;
}

$p = str_repeat('../', count($b1)) . join('/', $a1);

echo $p;
heyli 2010-10-11
  • 打赏
  • 举报
回复

<?php
$a = '/a/b/c/d/e.php';
$b = '/a/b/12/34/c.php';
function getRelative($a,$b) {
$arr = explode("/",$a);
$brr = explode("/",$b);
$c = count($arr)-2;
$d = count($brr)-2;
//之所以减二,一个是不在后面的文件名,
//一个是数组的索引是从0开始的,比数组中的第一维的个数要小一
$e = ($c>$d) ? $c:$d;
$str1 = $str2 = '';
for ($j=0;$j<=$e;$j++) {
$cur_a = isset($arr[$j]) ? $arr[$j] : '';
$cur_b = isset($brr[$j]) ? $brr[$j] : '';
if ($cur_a == $cur_b) {
continue;
} else {
if ($j <= $c)
{
$str1.='/'.$cur_a;
}
if ($j <= $d )
{
$str2.="../";
}
}
}
return $str2.substr($str1,1,strlen($str1));
}
echo getRelative($a,$b);
?>

网上答案很多
yxt4117 2010-10-11
  • 打赏
  • 举报
回复
学习喽 !!~

21,886

社区成员

发帖
与我相关
我的任务
社区描述
从PHP安装配置,PHP入门,PHP基础到PHP应用
社区管理员
  • 基础编程社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧