当前位置:Gxlcms > PHP教程 > php查找、替换字符串中http地址的代码分享

php查找、替换字符串中http地址的代码分享

时间:2021-07-01 10:21:17 帮助过:18人阅读

本文介绍下,用php在指定字符串中查找http地址,并进行替换的一例代码,有需要的朋友参考下。

在字符串中查找、替换http地址,代码如下:

',$str));  
   $reg="/http\:\/\/(\w+\.)+(net|com|org|cn|kr|jp|tw)[A-Za-z0-9_&\/\?=]*/i";  
   if(preg_match_all($reg,$str,$out))  
   {  
   for($i=0;$i

人气教程排行