我使用foreach循环从数据库值创建一个数组,如下所示:
foreach ($query->result_array() as $row) {
array(
'user_id' => $user_id,
'post_id' => $row['id'],
'time' => '0',
'platform' => $platform
);
}
假设我拉了2行,我需要让这个foreach创建一个多维数组,格式如下:
$data = array(
array(
'user_id' => '12',
'post_id' => '37822',
'time' => '0',
'platform' => 'email'
),
array(
'user_id' => '12',
'post_id' => '48319',
'time' => '0',
'platform' => 'email'
),
);
可能很简单,只是还是记不下来。谢谢你。
可以先声明一个空数组:
$results = array();
然后,每次有新行时,将其添加到该数组中:
$results[] = $row;
或者,无论如何,向数组中添加任何东西:
$results[] = array( something here );
在您的特定情况下,您可能会使用这样的内容:
$results = array();
foreach ($query->result_array() as $row) {
$results[] = array(
'user_id' => $user_id,
'post_id' => $row['id'],
'time' => '0',
'platform' => $platform
);
}
作为参考,PHP手册的相应章节:使用方括号语法创建/修改.