在语句中使用get_result()时,它只返回false而不是有效对象。
function getGames() {
$ret = array();
$stmt = DB::getConnection()->prepare("SELECT * FROM games ORDER BY position DESC");
$stmt->execute();
var_dump($stmt);
$result = $stmt->get_result();
while ($row = $result->fetch_assoc()) {
echo "read one entry";
}
return $ret;
}
列出的var_dump返回此消息,我无法从中提取任何信息:
object(mysqli_stmt)#3 (10) { ["affected_rows"]=> int(-1) ["insert_id"]=> int(0) ["num_rows"]=> int(0) ["param_count"]=> int(0) ["field_count"]=> int(5) ["errno"]=> int(2006) ["error"]=> string(26) "MySQL server has gone away" ["error_list"]=> array(1) { [0]=> array(3) { ["errno"]=> int(2006) ["sqlstate"]=> string(5) "HY000" ["error"]=> string(26) "MySQL server has gone away" } } ["sqlstate"]=> string(5) "HY000" ["id"]=> int(1) }
我的DB类看起来像这样:
<?php
class DB {
private static $connection;
static function getConnection() {
if (!isset($connection) || $connection->ping()) {
$connection = new mysqli("localhost", "user", "pw", "db");
$connection->query("SET NAMES 'utf8'");
}
return $connection;
}
}
任何有助于实现这一目标的帮助将不胜感激
答案 0 :(得分:0)
正如您在var_dump()中看到的,results()方法返回false,因为您收到错误。当您在查询期间丢失连接时,通常会发生错误“MySQL服务器已消失”。
您可以在MySql site.
上详细了解此错误答案 1 :(得分:0)
好吧,我发现了问题。 不知何故,我在准备/执行时没有处理相同的mysqli对象。
暂时保存对象解决了我的问题。