I have been having a really hard time debugging this error since the past 2 days…googled for every possible solution bu failed…would be really helpful if anyone could help me out with it:
Warning: preg_replace() [function.preg-replace]: Unknown modifier '$' in C:\xampp\htdocs\wi_class_files\autoMakeLinks.php on line 7
The code is:
class autoActiveLink {
function makeActiveLink($originalString){
$newString = preg_replace("[[:alpha:]]+://[^[:space:]]+[[:alnum:]/]i/","\\0", $originalString);
return $newString;
}
}
You forgot your delimiters (at the beginning AND at the end of your mask)