gpt4 book ai didi

php - 适用于 PHP,不适用于 PHPUnit

转载 作者:行者123 更新时间:2023-11-30 00:32:39 25 4
gpt4 key购买 nike

我有一个简单的查询,它可以在普通环境中工作,但不能在 PHPUnit 上工作。

这是代码,但我认为它没有任何用处:

$a = mysql_query("SELECT id,img FROM images");
$b = mysql_fetch_array($a);

我已连接到数据库。

错误是:

mysql_fetch_array() expects parameter 1 to be resource, boolean given.

错误指向提取命令。

最佳答案

查询失败。当查询失败时,mysql_query()函数返回false

您应该始终检查错误。您还应该read the documentation当你的代码不起作用时;它告诉您要寻找什么。

$a = mysql_query("SELECT id,img FROM images");
if ($a === false) {
die(mysql_error());
}
$b = mysql_fetch_array($a);

关于php - 适用于 PHP,不适用于 PHPUnit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22398397/

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