作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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
。所以在 $arr
item1 中以 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/
我是一名优秀的程序员,十分优秀!