我SQLquery
在一个名为SQLHandling
It 的类中创建了一个 SQL 函数,如下所示:
/***********************************************************
* SQLquery takes a full SQL query and runs it
* If it fails it will return an error otherwise it will return
* the SQL query as given.
************************************************************/
function SQLquery($query) {
$q = mysql_query($query);
if(!$q) {
die(mysql_error());
return false;
} else {
return $q;
}
}
无论如何我可以在其他类函数中使用这个函数而不添加
$db = new SQLHandling();
$db->SQLquery($sql);
在我将使用它的每个功能中。
我知道我可以跑步SQLHandling::SQLquery($sql);
,但我试图避免这种情况。