public function link($text) |
{ |
return preg_replace_callback("#(https?|ftp)://\S+[^\s.,>)\];'\"!?]#", 'link_help', $text); |
} |
public function link($text) |
{ |
return preg_replace_callback("#(https?|ftp)://\S+[^\s.,>)\];'\"!?]#", array($this, 'link_help'), $text); |
} |