gpt4 book ai didi

php - 在 php 中列出/或其他数组的数组

转载 作者:行者123 更新时间:2023-11-28 23:29:38 28 4
gpt4 key购买 nike

我需要一些来自 php 的 SQL 查询帮助。

这是我的 PHP 代码:

$sql = "SELECT * FROM datab WHERE  (`datestamp` BETWEEN '$date' AND '$date') AND (`timestamp` BETWEEN '08:00:01' AND '20:00:00')";
$result = $conn->query($sql);
while($list = mysqli_fetch_array($result))
{
//echo "$list[0]</br>";
echo "$list[1]</br>"; //this is the column from MySQL corresponding to temperatures
//echo "$list[2]</br>"; //this is the column from MySQL corresponding to other entries (humidity)
//echo "$list[3]</br>";
// echo "$list[4]</br>";
// echo "$list[5]</br>";
//echo "$list[6]</br>";
// echo "$list[7]</br>";
}

所以,我需要像数组或列表元素一样访问我的每个温度,但我不知道该怎么做。我认为解决方案是将每个 $list[1] 元素添加到另一个数组中。

基本上我想访问像 temp[2] 这样的元素(或类似的东西)作为打印的 $list[1] 中的第二个元素。

谁能帮帮我?

最佳答案

为温度创建另一个数组:

$temperature = array();
while($list = mysqli_fetch_array($result))
{
$temperature[] = $list[1]; // so now you will be able to acess the temperature array from anywhere outside this loop
}

关于php - 在 php 中列出/或其他数组的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37763261/

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