Home > php教程 > php手册 > 用php正则判断url地址并自动转换为超链接

用php正则判断url地址并自动转换为超链接

WBOY
Release: 2016-06-06 20:00:52
Original
1192 people have browsed it

function autolink($foo) { $foo = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?//=]+)', 'a href="/1" target="_blank" rel="nofollow"/1/a', $foo); if( strpos($foo, "http") === FALSE ){ $foo = eregi_replace('(www.[-a-zA-Z0-9@:%_/+.~#?/

function autolink($foo) 

{

$foo = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?&//=]+)', '/1', $foo);

if( strpos($foo, "http") === FALSE ){

$foo = eregi_replace('(www.[-a-zA-Z0-9@:%_/+.~#?&//=]+)', '/1', $foo);

}else{

$foo = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_/+.~#?&//=]+)', '/1/2', $foo);

}

return $foo; 

}

 

echo autolink("http://www.baidu.com 百度 http://www.sina.com.cn 新浪");

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template