dannyb0986
New Member
- Messages
- 29
- Reaction score
- 0
- Points
- 0
Well since x10 upgraded, im starting to get some errors. It says this: Deprecated: Function eregi() is deprecated in ********** on line *** (in the stars there is info that i dont want to show). Here are the two codes that I am using that use eregi: // Find a match
if (eregi($Match, $agent)) {
break;
} else {
And the next one:
function makeActiveLink($originalString){
$newString = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href=\"\\0\" target=\"_blank\">\\0</a>", $originalString);
return $newString;
}
Can anybody edit these, so that way they will work with PHP 5.3?
Thanks!
if (eregi($Match, $agent)) {
break;
} else {
And the next one:
function makeActiveLink($originalString){
$newString = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href=\"\\0\" target=\"_blank\">\\0</a>", $originalString);
return $newString;
}
Can anybody edit these, so that way they will work with PHP 5.3?
Thanks!