class autoActiveLink {
    function makeActiveLink($originalString){
        $newString = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href=\"\\0\" target=\"_blank\">\\0</a>", $originalString);
        return $newString;
    }
}
What should I replace the function ereg_replace with? I tried preg_replace, but the error still persists.
 
     
     
    