php – 将相对链接转换为绝对链接

前端之家收集整理的这篇文章主要介绍了php – 将相对链接转换为绝对链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在请求这样的网站的源代码
<? $txt = file_get_contents('http://stats.pingdom.com/qmwwuwoz2b71/522741');
echo $txt; ?>

我想用绝对的替换相关链接!基本上,

<img src="/images/legend_15s.png"/> and <img src='/images/legend_15s.png'/>

应该被替换

<img src="http://domain.com/images/legend_15s.png"/>

<img src='http://domain.com/images/legend_15s.png'/>

分别.我怎样才能做到这一点?

代码仅替换链接和图像:
<? $txt = file_get_contents('http://stats.pingdom.com/qmwwuwoz2b71/522741');
$txt = str_replace(array('href="','src="'),array('href="http://stats.pingdom.com/','src="http://stats.pingdom.com/'),$txt);
echo $txt; ?>

我测试过它的工作:)

更新

这是通过正则表达式完成并更好地工作:

<? $txt = file_get_contents('http://stats.pingdom.com/qmwwuwoz2b71/522741');
$domain = "http://stats.pingdom.com";
$txt = preg_replace("/(href|src)\=\"([^(http)])(\/)?/","$1=\"$domain$2",$txt);
echo $txt; ?>

完成:D

原文链接:https://www.f2er.com/php/133746.html

猜你在找的PHP相关文章