gpt4 book ai didi

php - 如何从 MySQL 表中获取行号?

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:13 25 4
gpt4 key购买 nike

所以我在数据库中为我的游戏高分系统制作了这样的表格。

enter image description here

我想获得总行数。 (在上表中,我预计结果为 11)

所以我在 .php 上写的是这样的,

$sql = "SELECT COUNT(*) FROM $table"; 
$result = mysql_query($sql) or Die('Query failed: ' . mysql_error());
$info = "";
while($found = mysql_fetch_array($result)){
$info = $found;
}
echo 'Count'.$info; exit;

统一地,我收到上面的回显文本并提取数字,

 if (hs.text.Contains("Count"))
{
string result = Regex.Replace(hs.text, @"\D", "");
totalHighNum = Int32.Parse(result);
Debug.Log("total highscore num is " + result);
}

但这行不通。打印的回显文本说,'CountArray'

我该如何修改?谢谢。

最佳答案

您必须在结果中引用实际的列:

$sql = "SELECT COUNT(*) AS rowcount FROM $table"; 
$result = mysql_query($sql) or Die('Query failed: ' . mysql_error());
$info = "";
if ($found = mysql_fetch_array($result)) {
$info = $found['rowcount'];
}
echo 'Count'.$info;
exit;

此外,不要使用 mysql 扩展,它已被弃用,请切换到 mysqli

关于php - 如何从 MySQL 表中获取行号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29960465/

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