php相对urls到绝对urls转换与最终基地href html标记

时间:2012-07-25 15:49:31

标签: php html url

我有一个用DOM加载的页面,然后我想根据最终<base href>标签

将锚的所有相对URL转换为绝对URL

我正在寻找经过测试的东西,而不是某些随机脚本在某些情况下失败

我对解析各种形式的href =“”用法感兴趣:

href="relative.php"
href="/absolute1.php"
href="./relative.php"
href="../relative.php"
href="//absolutedomain.org"
href="." relative
href=".." relative
href="../" relative
href="./" relative

和更复杂的混合

提前谢谢

2 个答案:

答案 0 :(得分:0)

<?php

//Converting relative urls into absolute urls | PHP Tutors

$base_url = 'http://www.xyz.com/ ';
$anchors[0] = '<a href="test1.php" >Testing Link1 </a >';
$anchors[1] = '<a href="test2.php" >Testing Link2 </a >';

foreach($anchors as $val) {
    if(strpos($val,$base_url) === false) {
        echo str_replace('href="','href="'.$base_url,$val)."<br/ >";
    } else {
        echo $val."<br/ >";
    }
}
?>

Reference

答案 1 :(得分:0)

此功能将解析$pgurl 给定当前页面网址的相对网址,而不使用正则表达式。它成功解决了:

/home.php?example种类,

same-dir nextpage.php类型,

../...../.../parentdir种类,

完整的http://example.net网址,

和简写//example.net网址

//Current base URL (you can dynamically retrieve from $_SERVER)
$pgurl = 'http://example.com/scripts/php/absurl.php';

function absurl($url) {
 global $pgurl;
 if(strpos($url,'://')) return $url; //already absolute
 if(substr($url,0,2)=='//') return 'http:'.$url; //shorthand scheme
 if($url[0]=='/') return parse_url($pgurl,PHP_URL_SCHEME).'://'.parse_url($pgurl,PHP_URL_HOST).$url; //just add domain
 if(strpos($pgurl,'/',9)===false) $pgurl .= '/'; //add slash to domain if needed
 return substr($pgurl,0,strrpos($pgurl,'/')+1).$url; //for relative links, gets current directory and appends new filename
}

function nodots($path) { //Resolve dot dot slashes, no regex!
 $arr1 = explode('/',$path);
 $arr2 = array();
 foreach($arr1 as $seg) {
  switch($seg) {
   case '.':
    break;
   case '..':
    array_pop($arr2);
    break;
   case '...':
    array_pop($arr2); array_pop($arr2);
    break;
   case '....':
    array_pop($arr2); array_pop($arr2); array_pop($arr2);
    break;
   case '.....':
    array_pop($arr2); array_pop($arr2); array_pop($arr2); array_pop($arr2);
    break;
   default:
    $arr2[] = $seg;
  }
 }
 return implode('/',$arr2);
}

用法示例:

echo nodots(absurl('../index.html'));
在将URL转换为绝对值后,

nodots()必须被称为

点功能有点冗余,但是可读,快速,不使用正则表达式,并且将解析99%的典型网址(如果你想100%确定,只需扩展交换机块以支持6+点,虽然我从未在网址中看到过那么多点。)

希望这有帮助,