gpt4 book ai didi

php - 循环 MySQL 结果

转载 作者:行者123 更新时间:2023-12-01 00:01:09 25 4
gpt4 key购买 nike

我已经有一段时间没有使用 PHP 和 MySQL 了,所以很遗憾我失去了一些知识,我的代码需要一些帮助。

下面我有一些代码可以从数据库中获取 9 个不同的值,但它对我不起作用。由于 PHP 错误消息已设置为关闭,所以我无法正确判断出了什么问题。

我是错了还是这里出了什么问题?

for (i = 0; i < 10; i ++) {
$query2 = "SELECT * from arkitekturobjekt WHERE id = '{$buildingIdArray[i]}'";
$result2 = $mysqli->query($query2);
$row = mysqli_fetch_object($result2);
// Do some stuff here
}

编辑:感谢到目前为止的帮助,但它仍然不起作用! $buildingIdArray[] 有一些错误我有这段代码来设置数组的值:

$buildingIdArray  = array();
$numbers = range (1, 40);
shuffle($numbers);
$buildingIdArray=array_slice ($numbers,1,9)

如果我这样做,它会起作用:

$buildingIdArray  = array(1,2,3,4,5,6,7,8,9);

有什么问题吗?

最佳答案

$i 不是 i:

for ($i = 0; $i < 10; $i ++) 

关于php - 循环 MySQL 结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17071881/

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