php如何将相对路径转换为绝对路径

中有这么个链接:tool/201215.html
奈何使之转换为


百度知道一个问题

给你一个函数:

<?php /* $content:网页内容; $feed_url:网站域名; */ 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; } ?>


end

上一篇: php自动建设文件夹   |   下一篇:PHP输入一个url匹配获得域名各分组部门 PHP正则» 标签:

分享到: 更多

相关日志:

用户名正则表达式、含中文、长度为4-16个字符。

php base64_encode 在url编码上应用

php中include、require包括的干系。

php正文提取道理演示——过滤篇

PHP下载CSS文件中的图片

php正则替换回调函数preg_replace_callback()初解

php自动转换字符集函数,从thinkphp中提取

【转】小谈php正则提取图片地点

php自动建设文件夹

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/7963.html