Home  >  Article  >  Backend Development  >  php changes the URL in the string to a hyperlink

php changes the URL in the string to a hyperlink

WBOY
WBOYOriginal
2016-08-08 09:33:521303browse

$string = "Connect to http://www.codes51.com site";
//There needs to be a space or a carriage return after the connection.

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

PRint $string;

This is very useful.

The above introduces how PHP changes the URL into a hyperlink in the string, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn