我在 9 年前使用了一个 PHP 脚本。
将 PHP 版本更新到最新的稳定版本(PHP 5.4.1.1)后,我的脚本不再工作。
我找到了问题区域,谁能帮我把这个旧的 PHP 代码转换为最新的 PHP 5.4.11。
if ((strlen($user_name)<$nick_min_length) or (strlen($user_name)>$nick_max_length)) {
$error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
include($file_path."designes/".$design."/error_page.php");
exit;
}
if (ereg("[^".$nick_available_chars."]", $user_name)) {
$error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
include($file_path."designes/".$design."/error_page.php");
exit;
}
if (strtolower($user_name) == strtolower(strip_tags($w_rob_name))) {
$error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
include($file_path."designes/".$design."/error_page.php");
exit;
}