関数をペアレント化しようとしましたが、次のエラーが発生しました:
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";
}