connect-6ren">
gpt4 book ai didi

php - 使用 PHP 连接时 MySQL 服务器出现错误

转载 作者:行者123 更新时间:2023-11-29 15:15:07 26 4
gpt4 key购买 nike

当我尝试运行下面的程序时,我收到错误,因为 MySQL 服务器已经消失。

<?php
$servername = "localhost";
$username = "root";
$password = "";

// Create connection
$conn = new mysqli($servername, $username, $password);

// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>

Google 表示这是由于

2

Try to debug the problem. This can be caused by any number of things. Commonly there are:

  • The MySQL server crashed
  • A comms problem between the client and server
  • Abusing the client library in a way not intended, perhaps sending commands out of order or sending junk through the socket.

我来解决这个问题是为了调试问题。如何调试以找到发生此错误的正确原因?

最佳答案

首先检查您计算机中安装的 php 版本

MySQLi 扩展旨在与 MySQL 版本 4.1.13 或更高版本配合使用。

如果您有需要的版本

建议您卸载服务器,例如如果是 xampp,然后再次安装

它会起作用

关于php - 使用 PHP 连接时 MySQL 服务器出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59737597/

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