然后我想要的替换里面的连接 比如 hr"/>
PHP头条
热点:

php怎么获取网页并且替换


php 如何获取网页并且替换?
比如 我获取到了百度的源码
$url = "http://www.baidu.com"; 
$contents = file_get_contents($url); 
echo $contents; 
?> 


然后我想要的替换里面的连接
比如
href="http://baike.baidu.com" 把http://baike.baidu.com 替换成一个变量 然输出

类似与 href="$newurl"
------解决方案--------------------
$newurl='sohu.com';
echo preg_replace('/href="(.+?)"/i','href="'.$newurl.'"',$contents); 

www.phpzy.comtrue/phprm/14293.htmlTechArticlephp怎么获取网页并且替换 php 如何获取网页并且替换? 比如我获取到了百度的源码 $url="http://www.baidu.com"; $contents=file_get_contents($url); echo$contents; ?> 然后我想要的替换里面的连接 比如 hr...

相关文章

相关频道:

PHP之友评论

今天推荐