Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Adresas be tagu

Parašė Žmogus· 2009 Lie. 12 22:07:09
#2

Modų saite man atrodo, kad parašytas straipsnis, o jei ne tai:
Į maincore kišk
require_once INCLUDES."auto-linkas.php";
O auto-linkas turinys

<?php
function make_clickable($text)
{
$ret = ' ' . $text;
$ret = preg_replace("#(^|[\n ])([\w]+?://[^ \"\n\r\t<]*)#is", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);
$ret = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r<]*)#is", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);
$ret = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>", $ret);
$ret = substr($ret, 1);
return($ret);
}
?>