有人可以帮我重写这些代码吗:
if (eregi($asked,$accepted)) {
$this->plot_type = $which_pt;
return true;
} else {
$this->DrawError('$which_pt not an acceptable plot type');
return false;
}
任何帮助将不胜感激,我已经尝试了通过谷歌获得的所有修复,但没有一个能够修复它。
谢谢。
if ( preg_match($asked."i",$accepted) ) // there is no case insensitive version of preg_match
{
$this->plot_type = $which_pt;
return true;
} else {
$this->DrawError("$which_pt not an acceptable plot type"); // i think you want " instead of ' here
return false;
}
应该这样做。如果没有,请与我们分享 中的正则表达式的内容$asked
。