相对路径转化成绝对路径
作者:bea
提取Gregarius中的一个函数。可以把网页中的相对路径自动转化成绝对路径。 <? functionrelative_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_r
提取 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;
}
?>
有用 | 无用
<?
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;
}
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php 中的str_replace 函数总结
- 解决php中Cannot send session cache limiter 的问题的方法
- escape unescape的php下的实现方法
- mysql 全文搜索 技巧
- mysql 搜索之简单应用
- mysql 字段类型说明
- Discuz! 5.0.0论坛程序中加入一段js代码,让会员点击下载附件前自动弹出提示窗口
- PHP与SQL注入攻击[三]
- PHP与SQL注入攻击[二]
- PHP与SQL注入攻击[一]
- 使用Xdebug调试和优化PHP程序之[1]
- php下用GD生成生成缩略图的两个选择和区别
- 15种PHP Encoder的比较
- dede全站URL静态化改造[070414更正]
- 安装PHP可能遇到的问题“无法载入mysql扩展” 的解决方法
- 给apache2.2加上mod_encoding模块後 php5.2.0 处理url出现bug
- Linux下ZendOptimizer的安装与配置方法
- PHP 中英文混合排版中处理字符串常用的函数
- 如何提高MYSQL数据库的查询统计速度 select 索引应用