意外的'静态'(T_STATIC),期待标识符(T_STRING)

时间:2012-12-07 23:36:11

标签: php parent

我尝试将一个函数作为父函数,但是我收到了这个错误:

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";
                }

1 个答案:

答案 0 :(得分:1)

尝试public static function tableExist

编辑:你有特定的行参考吗?