PHP/HTML/Hyperlink
Версия от 10:37, 26 мая 2010; (обсуждение)
Parse http link from string
<?php
$text = "This is a link to http://www.wbex.ru/.";
echo ereg_replace("http://([a-zA-Z0-9./-]+)$", "<a href=\"\\0\">\\0</a>", $text);
?>
<?php
$text = "This is a link to http://www.wbex.ru/.";
echo ereg_replace("http://([a-zA-Z0-9./-]+)$", "<a href=\"\\0\">\\0</a>", $text);
?>