Parse http link from string : Hyperlink « HTML « PHP






Parse http link from string


<?php
   $text = "This is a link to http://www.java2s.com/.";
   echo ereg_replace("http://([a-zA-Z0-9./-]+)$", "<a href=\"\\0\">\\0</a>", $text);
?>

           
       

Related examples in the same category