gpt4 book ai didi

php - 执行 mysqli_stmt->execute() 导致 "MySQL server has gone away"错误

转载 作者:可可西里 更新时间:2023-11-01 08:24:11 25 4
gpt4 key购买 nike

好的。这是一个奇怪的。首先,这是错误:

Fatal error: Uncaught mysqli_sql_exception: MySQL server has gone away in database.php:84 Stack trace: #0 database.php(84): mysqli_stmt->execute()

根据其他 StackOverflow 文章,例如 thisthis ,那个错误,MySQL server has gone away 意味着:

  • mysqli 对象在没有先关闭的情况下被重用(不,绝对不是)
  • MySQL 服务器端的连接超时变量太小
  • 最大数据包大小变量太小

但是,我已将超时和最大数据包大小变量设置为其最大值,查询只是从一个空表中进行选择。没有理由认为其中任何一个应该成为问题。我还通过 Python 进行了验证——可以连接到服务器并且应该可以执行查询。它甚至可以在 phpMyAdmin 中正常运行。

关于 mysqli_stmt::prepare 的 PHP 文档,它说的是关于错误的:

php docs screenshot

  • 我在 Linux 上使用 mysqlnd,当语句长于 max_allowed_pa​​cket 时它不应该给出这个错误
  • 我已经提到了如何将 max_allowed_pa​​cket 设置为变量的最大值。

如果您希望我提供更多信息,例如我的 SQL 服务器或 PHP 配置,请告诉我您需要什么。

我读到的一篇文章说使用 mysqli->ping() 来检查连接的情况,在我调用 mysqli_stmt->execute() .

我相当确定这是我的实现问题 -- 我尝试重新安装 Web 服务器和 MySQL 服务器,切换 PHP 版本,甚至尝试切换主机。但是,尽管我尝试解决此问题,但我仍然遇到错误。

代码如下:

<?php
ini_set('mysql.connect_timeout', 3000);
ini_set('default_socket_timeout', 3000);

/* define the database class */
class Database {
public $host = 'localhost';
public $name = '';
public $user = '';
public $pass = '';

private $mysqli;

/* constructor function, inits the database connection */
function __construct($chost, $cname, $cuser, $cpass) {
$this->host = $chost;
$this->name = $cname;
$this->user = $cuser;
$this->pass = $cpass;

mysqli_report(MYSQLI_REPORT_ALL);
$this->mysqli = new mysqli($this->getHost(), $this->getUsername(), $this->getPassword(), $this->getName());
}

/* closes the connection to the database */
function close() {
return $this->getMySQLi()->close();
}

/* returns a query object for the given parameters */
function query($query, $type='', ...$params) {
$statement = $this->getMySQLi()->prepare($query);


if(strlen($type) != 0) {
// bind parameters to query
$statement->bind_param($type, ...$params);
}

/*
* stackoverflow readers: this the debug code
* I mentioned to check the connection
*
*/
if ($this->getMySQLi()->ping()) {
printf ("Our connection is ok!\n");
} else {
printf ("Error: %s\n", $this->getMySQLi()->error);
}

return new Query($statement);
}

/* getter functions */

function getMySQLi() {
return $this->mysqli;
}

function getHost() {
return $this->host;
}

function getName() {
return $this->name;
}

function getUsername() {
return $this->user;
}

function getPassword() {
return $this->pass;
}
}

/* define the query class */
class Query {
private $statement;
private $result;

/* constructor, sets variables and stuff */
function __construct($statement) {
$this->statement = $statement;
}

/* executes the statement */
function execute() {
$status = $this->getStatement()->execute();
$this->result = $this->getStatement()->get_result();

return $status;
}

/* closes the statement */
function close() {
return $this->getStatement()->close();
}

/* returns the number of results */
function countRows() {
return $this->getResult()->num_rows;
}

/* getter functions */

/* returns the statement object */
function getStatement() {
return $this->statement;
}

/* returns the result object */
function getResult() {
return $this->result;
}

function getRow() {
return $this->getResult()->fetch_assoc();
}

/* returns the result in an array */
function getRows() {
$rows = array();
while($row = $this->getRow()) {
$rows[] = $row;
}

return $rows;
}
}
?>

所以。我的问题是,我的实现有问题吗?如何缓解这个问题?是 SQL Server 还是 PHP 的问题?

编辑:下面是我如何使用数据库类(getConnection() 只是返回一个新的数据库实例)

function getUsers() {
$query = getConnection()->query('SELECT * FROM `users`');
$query->execute();
return $query->getRows();
}

最佳答案

我想我现在知道是什么导致了这个问题!我希望我是对的。

function getUsers() {
// here you are creating a Database instance,
// but you've left it in the air, because you just retrieved `query` from it.
$query = getConnection()->query('SELECT * FROM `users`');
// at this point, there are already NO Database instance,
// because you have no reference of it.
// thus what I've read about resources being garbage collected
// will now apply here.
$query->execute();
// this will fail, indeed, Mysql has gone away!
return $query->getRows();
}

您至少应该将连接保存到另一个变量。

$conn = getConnection();
$query = $conn->query('SELECT * FROM `user`');
$query->execute();
return $query->getRows();

但作为一个正确的解决方案,您必须在整个脚本执行过程中保持单个连接处于事件状态,并将其用于所有查询。

关于php - 执行 mysqli_stmt->execute() 导致 "MySQL server has gone away"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49355763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com