php相对路径转化成绝对路径

2019-06-20 08:46:31来源: 阅读 ()

新老客户大回馈,云服务器低至5折

提取 Gregarius中的一个函数。可以把网页中的相对路径自动转化成绝对路径。

<?
function relative_to_absolute($content, $feed_url) {
preg_match('/(http|https|ftp):///', $feed_url, $protocol);
$server_url = preg_replace("/(http|https|ftp|news):///", "", $feed_url);
$server_url = preg_replace("//.*/", "", $server_url);

if ($server_url == '') {
return $content;
}

if (isset($protocol[0])) {
$new_content = preg_replace('/href="//', 'href="'.$protocol[0].$server_url.'/', $content);
$new_content = preg_replace('/src="//', 'src="'.$protocol[0].$server_url.'/', $new_content);
} else {
$new_content = $content;
}
return $new_content;
}
?>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Memcached深度分析

下一篇:在ZendStudio 中开启PHP 5.2.x 环境的远程调试功能