gpt4 book ai didi

php - 无法从 mysql 获取 php 中的完整数组

转载 作者:行者123 更新时间:2023-11-29 21:16:02 26 4
gpt4 key购买 nike

在 phpmyadmin 中,我得到了预期的结果,这意味着一系列天数内的每日假期数,但是我无法使其在 PHP 上工作,并且我只得到整个数组的第一行。

$mysqli = mysqli_connect("localhost", "andes", "andes123","andes");
$query= "select calendar_table.dt, count(BP) as 'Number'
from calendar_table
left join tbl021_vacaciones on calendar_table.dt between
tbl021_vacaciones.fecha_inicio and tbl021_vacaciones.fecha_fin
where (calendar_table.dt between '2016-01-29' and '2016-03-31')
group by calendar_table.dt";
$request=mysqli_query($mysqli,$query);
$row=mysqli_fetch_array($request);
$Resultado= print_r ($row['dt'], $row['Number']);

我知道我做错了,但我无法将结果保存到单个 PHP 中

最佳答案

要获取您需要循环的所有结果:

while($row=mysqli_fetch_assoc($request)) {
//echo $row['dt'];
}

关于php - 无法从 mysql 获取 php 中的完整数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35947009/

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