我们说我有一个链接到另一个文档的文档的URL(可以是绝对的或相对的),我需要绝对地使用此链接。
我做了一个简单的功能,为几种常见情况提供了这个功能:
function absolute_url($url,$parent_url){
$parent_url=parse_url($parent_url);
if(strcmp(substr($url,0,7),'http://')==0){
return $url;
}
elseif(strcmp(substr($url,0,1),'/')==0){
return $parent_url['scheme']."://".$parent_url['host'].$url;
}
else{
$path=$parent_url['path'];
$path=substr($path,0,strrpos($path,'/'));
return $parent_url['scheme']."://".$parent_url['host']."$path/".$url;
}
}
$parent_url='http://example.com/path/to/file/name.php?abc=abc';
echo absolute_url('name2.php',$parent_url)."\n";
// output http://example.com/path/to/file/name2.php
echo absolute_url('/name2.php',$parent_url)."\n";
// output http://example.com/name2.php
echo absolute_url('http://name2.php',$parent_url)."\n";
// output http://name2.php
代码工作正常,但可能会有更多案例,例如../../path/to/file.php
无效。
那么有没有任何标准类或函数可以更好地(更普遍)实现我的功能?
答案 0 :(得分:1)
此功能将解析$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+点,虽然我从未在网址中看到过那么多点。)
希望这有帮助,
答案 1 :(得分:0)
$uri = "..";
$path = realpath($uri);
$root = realpath($_SERVER["DOCUMENT_ROOT"]);
if($path){
$path = str_replace($root, "", $path);
$path = $_SERVER["SERVER_NAME"] . $path;
$protocol = "http";
if(isset($_SERVER["HTTPS"])){
$protocol .= "s";
}
$path = "{$protocol}://$path";
$path = str_replace("\\", "/", $path);
}
var_dump($path);
可能有更好/更快的方式,但我只是把它搞砸了......