最新消息: 新版网站上线了!!!

php使用file_get_contents替换iframe方法

做网页的时候,有时候会用到iframe标签。iframe对优化不好。不知道用php中的file_get_contents如何呢?有兴趣的网友可以讨论下。
以下是源码:

<?php
header("Content-Type: text/html;charset=utf-8");
$link = "http://www.xxxx.com";
$html = file_get_contents($link);

//替换url
$html=preg_replace("(href=\"(.+?)\")","href=".$link."/$1",$html);
$html=preg_replace("(src=\"(.+?)\")","src=".$link."/$1",$html);
echo $html;
?>


转载请注明:谷谷点程序 » php使用file_get_contents替换iframe方法