我有一个数组$new_data
,结果print_r($new_data['comments']);
如下
Array (
[id] => 1
[uye] => yusufalibozkir
[yorum] => Saffet gel beni affet
[post] => 1
)
但是当我想使用 foreach 循环打印我的数据时:
foreach($new_data['comments'] as $comments)
{
echo $comments['id'];
}
结果:
1yS1
任何帮助将不胜感激。
编辑:
这个问题可能如下所示,我正在创建如下数组:
$comments = $this->post_model->getComments($data['id']);
foreach($comments as $comments)
{
$comments['uye'] = $this->members_model->lognick($comments['uye']);
}
实际上,它需要在主数组中有 2 个数组。因为我的表有 2 行。但它只返回最后一个数据。