>php教程 >php手册 > 相对路径转绝对路径

相对路径转绝对路径

WBOY
WBOY원래의
2016-06-07 11:42:05872검색

相对路径转绝对路径
/**<br>  * 相对路径转网络绝对路径<br>  * @param string $file<br>  * @return string<br>  */<br> function dirToHttpUrl($file) {<br> <br>     //判断文件是否存在<br>     if (!file_exists($file)) {<br>         return false;<br>     }<br> <br>     //域名<br>     $nowUrl = dirname('http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']);    //当前域名<br>     $tempUrl = explode('.', $_SERVER['HTTP_HOST']);<br>     $dirUrl = 'http://www.'.$tempUrl[1].'.'.$tempUrl[2].'/';                    //主域名<br> <br>     //文件路径的层次统计<br>     $tempFile = explode('../', $file);<br>     $tempNum = array_count_values($tempFile);<br> <br>     if (array_key_exists('', $tempNum)) {<br>         $fileNum = $tempNum[''];<br>         $fileEnd = end($tempFile);<br>     } else {<br>         $fileNum = 0;<br>         $fileEnd = '/'.substr($tempFile[0], 2);<br>     }<br> <br>     //域名层次统计<br>     $tempWeb = explode('/', $nowUrl);<br>     $tempWeb = array_slice($tempWeb, 3);<br>     $webNum = count($tempWeb);<br> <br>     //文件对应的域名<br>     if ($fileNum > $webNum) {<br>         $nowUrl = $dirUrl;<br>     }<br> <br>     //返回<br>     return $nowUrl.$fileEnd;<br> <br> }<br> <br> //dirToHttpUrl('./1.jpg');

AD:真正免费,域名+虚机+企业邮箱=0元

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:禁止指定IP访问网站다음 기사:thinkphp socket 类