嗨我需要一些帮助来解决这个错误。它在脚本中的其他任何地方都可以正常工作,除非我尝试在这个函数中调用它。
我调用的函数是:getTotalServers
错误:
Fatal error: Call to a member function prepare() on a non-object in C:\xampp2\htdocs\runeloft\ss_sources\util.php on line 208
调用此功能:
function display_table($online, $where, $num_servers = null){
global $aaaa, $bbbb;
$num_per_page = 30;
$page = 1;
// how many records per page
$size = 10;
// we get the current page from $_GET
if (isset($_GET['page'])){
$page = (int) $_GET['page'];
}
$aaaa = getTotalServers(1, $num_servers);;
$bbbb = $page;
// create the pagination class
$pagination = new Pagination();
$pagination->setLink("?action=status&page=%s");
$pagination->setPage($page);
$pagination->setSize($size);
$pagination->setTotalRecords($num_servers);
global $g_headers;
$g_headers = array(
'name' => 'Server Name',
'ip' => 'IP',
'port' => 'Port',
'uptime' => 'Uptime',
'online' => 'Status',
);
$start = isset($_GET['start']) ? $_GET['start'] : 0;
mysql_con();
global $g_mysqli;
$start = $g_mysqli->real_escape_string($start);
if(isset($_GET['sort']) && isset($g_headers[$_GET['sort']])){
$order_by = 'ORDER BY `'.$g_mysqli->real_escape_string($_GET['sort']).'` '.(isset($_GET['desc']) ? 'DESC' : 'ASC');
}else{
//default sort
$order_by = 'ORDER BY `uptime` DESC, `time` ASC';
}
//$order_by .= " LIMIT $start, $num_per_page";
$order_by .= " " . $pagination->getLimitSql();
if($start == 0 && $online == 1 && !isset($_GET['sort']))
echoTable('Spons', "`sponsored` != '0'", "ORDER BY `sponsored` DESC, RAND() LIMIT 10");
echoTable('Other', $where, $order_by, $online, $start, $num_per_page, $num_servers);
close_mysql();
}
被叫函数:
function getTotalServers($online, $where, $num_servers = null){
$where = "`online` = '$online' AND `sponsored` = '0'";
if($num_servers == null){
global $g_mysqli;
$stmt = $g_mysqli->prepare("SELECT COUNT(*) FROM `servers` WHERE ".$where) or debug($g_mysqli->error);
$stmt->execute();
// bind result variables
$stmt->bind_result($num_servers);
$stmt->fetch();
$stmt->close();
}
return $num_servers;
}
感谢您的帮助。
答案 0 :(得分:0)
我的猜测是,由于此时尚未调用mysql_con,因此$ g_mysql变量不存在。
如果您尝试在非对象上调用方法,PHP将触发您看到的错误。基本上由于变量不存在,因此它默认为null。
$a = null;
$a->prepare()
没有任何意义,所以这就是PHP抛出错误的原因。
另一方面,你真的不应该使用全局变量。您可以谷歌搜索或搜索stackoverflow以获取更详细的列表,但简而言之,它们会破坏代码的可移植性,并使像这样的错误更难发现。将一个额外的参数传递给需要它的每个函数调用是一件痛苦的事情,但从设计的角度来看它更好(而且实际上并没有多少额外的努力:p)。
答案 1 :(得分:0)
对象$g_mysqli
应初始化 BEFORE 在您的代码中调用它。
在您的情况下,您在许多地方创建全局变量$g_mysqli
,但每次初始化它之前它都是NULL对象。
所以你不能在null对象中调用任何函数。
答案 2 :(得分:-1)
问题在于header()函数。 您需要做的就是在任何使用header()函数的页面中的代码顶部添加一个ob_start()。
只是一个令人困惑的错误! 如果有人知道原因,请解释..