-2

関数をペアレント化しようとしましたが、次のエラーが発生しました:

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

1 に答える 1

1

試すpublic static function tableExist

編集:特定の行参照がありますか?

于 2012-12-07T23:38:03.260 に答える