使用PHP求两个文件的相对路径_php技巧
程序员文章站
2022-04-17 15:26:32
...
复制代码 代码如下:
function compare($ph1,$ph2){
$ret = '';
$_f1Arr = explode("/",$ph1);
$_f2Arr = explode("/",$ph2);
$f1 = array_pop($_f1Arr);
$f2 = array_pop($_f2Arr);
for($i=0;$i
break;
}
for($j= $i-1;$j
}
for($i-1;$i
}
return $ret.$f2;
}
$file1 = "aaa/ddd/ccc/ddd/test/a.js";
$file2 = "aaa/ddd/ccc/ddd/test/b.js";
echo compare($file1,$file2);
?>
B对于A的相对路径。。。
下一篇: ps里面图片怎么拉进来
推荐阅读