gpt4 book ai didi

php - 遍历 while 数组并向项目添加更多属性 - PHP

转载 作者:行者123 更新时间:2023-11-30 22:32:00 25 4
gpt4 key购买 nike

我在 PHP 中运行查询,遍历项目并将它们添加到数组中;

$select_all_restaurants = mysqli_query($connection, $query);
$rows = $select_all_restaurants -> num_rows;

$arr = array();
if($rows > 0) {
while($rows = mysqli_fetch_assoc($select_all_restaurants)) {
$arr[] = $rows;
}
}

如何从另一个查询中为数组中的每个项目将数据附加到 $arr 中。因此,如果 item1 具有来自第一个查询的属性 id,name,当我运行第二个查询时,我想向它添加更多属性,例如 distance。所以在 $arritem1 中以 id,name,distance

结尾

我正在获取另一组数据的查询如下;

$info = get_driving_information($address1, $address2);
echo $info['distance'];
echo $info['time'];

另外,我从原始查询中获取了 $address1

这是我试过的;

$select_all_restaurants = mysqli_query($connection, $query);
$rows = $select_all_restaurants -> num_rows;

$arr = array();
if($rows > 0) {
while($rows = mysqli_fetch_assoc($select_all_restaurants)) {

$info = get_driving_information($rows['address1'], $address2);
// I get two properties from this query
$info['distance'];
$info['time'];

// How do I add these 2 properties for every item in $arr?
//
$arr[] = $rows;
}
}

请指教

最佳答案

您只需将值附加到您的 $rows 对象即可

$arr = array();
if($rows > 0) {
while($rows = mysqli_fetch_assoc($select_all_restaurants)) {
$info = get_driving_information($rows['address1'], $address2);
// I get two properties from this query
$rows['distance'] = $info['distance'];
$rows['time'] = $info['time'];
$arr[] = $rows;
}
}

关于php - 遍历 while 数组并向项目添加更多属性 - PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33629315/

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