gpt4 book ai didi

php - 计算数组中的 json 对象

转载 作者:行者123 更新时间:2023-11-29 03:02:09 27 4
gpt4 key购买 nike

努力获取数组中所有对象的计数以在 json 中吐出数字。谁能帮忙?

try {
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$stmt = $conn->prepare('SELECT * FROM date_blocks WHERE user_id = :user_id');
$stmt->execute(array('user_id' => $user_id));

while($row = $stmt->fetch()) {
$startTime = strtotime($row['start_date']);
$endTime = strtotime($row['end_date']);


for ($i = $startTime; $i <= $endTime; $i = $i + 86400) {
$getDate = date('Y-m-d H:i:s', $i);
$return[]=array('date'=>$getDate,
'id'=>$row['id']);
}


}
} catch(PDOException $e) {
echo 'ERROR: ' . $e->getMessage();
}
header('Content-type: application/json');
echo json_encode($return);

最佳答案

获取 JSON 格式的元素数量,您可以在脚本末尾执行此操作:

header('Content-type: application/json');
echo json_encode(count($return));

关于php - 计算数组中的 json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21603002/

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