gpt4 book ai didi

php - 资源 ID#5 PHP MySQL 错误

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

我有这个代码:

<?php

$con = mysql_connect(DB_HOST, DB_USER, DB_PASS);
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db(DB_NAME, $con);

$result = mysql_query("SELECT SUM(colname) FROM profits");

$total = reset (mysql_fetch_assoc($result));

mysql_close($con);

echo $total;

?>

并且它输出资源 id #5。有什么帮助吗?提前致谢!

最佳答案

不要像这样使用 reset() - 如果您需要单个值,只需使用 list():

$result = mysql_query("SELECT SUM(colname) FROM profits");
list($total) = mysql_fetch_array($result);

reset() 在关联数组上无法按预期工作:https://bugs.php.net/bug.php?id=38478

关于php - 资源 ID#5 PHP MySQL 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10286570/

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