Published in: PHP
Genera links en base a http, www, ftp
function ponerLinks( $str ){ $tmp = eregi_replace('((ftp|http|www)[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '<a href="\\1" target="_blank">\\1</a>', $str); }
You need to login to post a comment.
Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.
nicolaspar on 11/02/07
4 people have marked this snippet as a favorite
luman
arcturus
vali29
willcodeforfood
Published in: PHP
Genera links en base a http, www, ftp
function ponerLinks( $str ){ $tmp = eregi_replace('((ftp|http|www)[-a-zA-Z0-9@:%_\+.~#?&//=]+)', '<a href="\\1" target="_blank">\\1</a>', $str); }
You need to login to post a comment.