Wyskakuje mi bez przerwy taki komunikat i niemoge sobie z tym poradzić.
Fatal error: Maximum execution time of 120 seconds exceeded in
Kod
function clean($text, $pl = 1, $zam = "_") {
$ret = strtolower($text);
if($pl == 1) {
$ret = strtr($ret,"ĄĆĘŁŃÓŚŹŻ","ąćęłńóśźż");
$ret = strtr($ret,"ąćęłńóśźż","acelnoszz");
}
for($i = 0; $i <= strlen($ret); $i++) {
if( ((ord($ret[$i]) < 48) || (ord($ret[$i]) > 57)) && ((ord($ret[$i]) < 97) || (ord($ret[$i]) > 122)) ) {
if($ret[$i] <> " ") {
$ret[$i] = $zam;
} else {
$ret[$i] = "_";
}
}
}
return($ret);
}
$ret = strtolower($text);
if($pl == 1) {
$ret = strtr($ret,"ĄĆĘŁŃÓŚŹŻ","ąćęłńóśźż");
$ret = strtr($ret,"ąćęłńóśźż","acelnoszz");
}
for($i = 0; $i <= strlen($ret); $i++) {
if( ((ord($ret[$i]) < 48) || (ord($ret[$i]) > 57)) && ((ord($ret[$i]) < 97) || (ord($ret[$i]) > 122)) ) {
if($ret[$i] <> " ") {
$ret[$i] = $zam;
} else {
$ret[$i] = "_";
}
}
}
return($ret);
}
w Mozilli wyskakuje mi Połączenie z serwerem zostało zresetowane podczas wczytywania strony.
dopiero w IE6 wyskoczył mi błąd Fatal error: Maximum execution time of 120 seconds exceeded
ktoś wie co to może być ?