aşağıdaki kodu php 5.3.x sürümlerinde geçerli kılmak için nasıl değiştirmeliyim?
if ((!eregi("^[' A-Za-z0-9_]+$", $islem) and $islem != "") or (!eregi("^[' A-Za-z0-9_]+$", $process) and $process != ""))
php 5.3.x uyumsuzluğunu gidermek için |
2 Mesajlar | 558 Okunma |
if ((!eregi("^[' A-Za-z0-9_]+$", $islem) and $islem != "") or (!eregi("^[' A-Za-z0-9_]+$", $process) and $process != ""))
function EregiCevir($a, $b){
return preg_match('/'.$a.'/i', $b);
}
if ((!EregiCevir("^[' A-Za-z0-9_]+$", $islem) and $islem != "") or (!EregiCevir("^[' A-Za-z0-9_]+$", $process) and $process != ""))
?>