Maison  >  Article  >  php教程  >  列个正则表达式,判断一段留言中的http;//www.phpx.com,在显示的时候加上超连接。

列个正则表达式,判断一段留言中的http;//www.phpx.com,在显示的时候加上超连接。

WBOY
WBOYoriginal
2016-06-21 09:12:49829parcourir

显示|正则

$string = "连接http://www.phpx.com 站点";

//连接后需要有个空格或回车。



$string =  eregi_replace("http://([^ ,\r\n]*)","\\0",$string);

$string =  eregi_replace("ftp://([^ ,\r\n]*)","\\0",$string);



print $string;



Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn