- 论坛徽章:
- 1
|
看看这个,不知道是否完整,希望你多多测试一下子:
- <?php
- // --------------------------------------------------------------------------
- // File name : 文件名称.php
- // Description : 文件说明
- // Requirement : PHP4 (http://www.php.net)
- //
- // Copyright(C), HonestQiao, 2005, All Rights Reserved.
- //
- // Author: HonestQiao (honestqiao@hotmail.com)
- //
- // --------------------------------------------------------------------------
- function fixPath($aim, $baseUrl)
- {
- $strSource = $baseUrl;
- if(preg_match_all('/([^:\\/]+)\//', $strSource, $aryResult1, PREG_PATTERN_ORDER)){
- /// baseUrl存在路径分隔符/,则获取其路径层次
- $intUrlLevel= count($aryResult1[0]);
- }else
- {
- /// baseUrl不存在路径分隔符/,则生成后面需要的数据
- $intUrlLevel = 0;
- preg_match_all('/http:\/\/(.+?)$/', $strSource, $aryResult1, PREG_PATTERN_ORDER);
- $aryResult1[0][0] = $aryResult1[1][0] . "/";
- }
- $strSource = $aim;
- if(preg_match_all("/^\//",$strSource, $aryResult2, PREG_PATTERN_ORDER)){
- /// aim以/开头,则为根目录路径
- $strAimUrl = "http://" . $aryResult1[1][0] . str_replace("../","",$aim);
- }else{
- /// 分析aim的../,即相对路径的层次
- preg_match_all('/(\\.\\.\/)/', $strSource, $aryResult2, PREG_PATTERN_ORDER);
- $intAimUrlLevel= count($aryResult2[0]);
- /// 获取aim的相对路径的层次
- if($intUrlLevel<=$intAimUrlLevel){
- /// baseUrl的路径层次小于aim的相对路径的层次,则从根目录开始
- $strAimUrl = "http://" . $aryResult1[0][0] . str_replace("../","",$aim);
- }else{
- /// baseUrl的路径层次大于aim的相对路径的层次,则生成大于部分的路径
- $strAimUrl = "http://" . implode("",array_slice ($aryResult1[0], 0, $intUrlLevel - $intAimUrlLevel)) . str_replace("../","",$aim);
- }
- }
- return $strAimUrl;
- }
- $Url = "http://www.it.com.cn/f/market/0512/2/206656.htm";
- $aim = "../../../../f/market/0512/2/nn20051202j1009.jpg";
- echo(fixPath($aim,$Url));
- ?>
复制代码 |
|