我尝试将一个函数作为父函数,但是我收到了这个错误:
unexpected 'static' (T_STATIC), expecting identifier (T_STRING)
我有PHP v5.4.7 这是代码
public function static tableExist($table, $db)
{
$tables = mysql_exists($db);
while(list($temp) = mysql_fetch_array($name, $pass))
{
if($temp = $table)
{
return TRUE;
}
else
{
return FALSE;
}
}
}
和用法
if(register::tableExist(users, webshop));
{
echo "succes";
}
答案 0 :(得分:1)
尝试public static function tableExist
编辑:你有特定的行参考吗?