我正在尝试使用脚本。当我去使用它时,我收到以下错误:
警告:explode() 期望参数 2 是字符串,数组在第 16 行的 /myred/include/functions.php 中给出
警告:in_array() 期望参数 2 为数组,在第 17 行的 /myred/include/functions.php 中给出 null
现在,下面是functions.php 的第16 和17 行。有人知道它有什么问题吗?
$reserved = explode("--",$reserved);
if (in_array("$dname", $reserved)) {
$errormsg .= "$text_17<br>";
}
return $errormsg;
作为参考,这是我正在使用的脚本:http: //www.milliscripts.at/downloads/myred_14_mysql_5.zip
谢谢!