求相对路径方法小研究
Libérer: 2016-07-25 09:02:37
original
1165 Les gens l'ont consulté
如题,求两路径相对路径,求拍砖!
- /**
- * 求两路径的相对路径
- * @param string $patha 路径a
- * @param string $pathb 路径b
- * @author Joychao
- * @link http://www.joychao.cc
- * @return string 相对路径
- */
- function getRelativePath($patha,$pathb){
- $arr_a=explode('/',trim(dirname($patha),'/'));
- $arr_b=explode('/',trim(dirname($pathb),'/'));
- $n=min(count($arr_a),count($arr_b));//用最短路径来循环
- $flag=true;//标记位[标记是否完全没有交集]
- for($i=0;$i if($arr_a[$i]==$arr_b[$i]){
- unset($arr_a[$i],$arr_b[$i]);//去除前面相同的部分
- }else{
- if($i==0)
- $flag=false;//两路径没有交集
- break;//停止循环
- }
- }
-
- $str=$flag?str_repeat('../',count($arr_b)+1):'/';//没有交集则为根目录"/"[Linux情况,windows自己改]
- return $str.join('/',$arr_a);//拼接并返回
- }
- //TEST
-
- $a ='/a/b/c/d/e.php';
- $b ='/a/b/12/34/c.php';
- echo '路径a:'.$a;
- echo '
路径b:'.$b;
- echo '
路径a和路径b的相对路径(用c.php去访问e.php路径)为:';
- echo getRelativePath($a,$b);
- //-----OUTPUT-------------=
- 路径a:/a/b/c/d/e.php
- 路径b:/a/b/12/34/c.php
- 路径a和路径b的相对路径(用c.php去访问e.php路径)为:../../../c/d
复制代码
|
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31