我有这个数组 p>
Array
(
[first_information] =>数组
(
[0] => 10
[1] => 12
)
[rows] => 1
[0] => 数组
(
[data_1] => 1
[data_2] => 2
[data_3] => 3
[data_4] => 4
[data_5] => 5 \ n)
code> pre>
) p>
我应该如何仅显示[first_information]内容。 p>
我尝试使用此代码 p>
foreach($ row ['first_information']为$ first)
echo $ first;
code> pre>
但只显示“12”,这是数组的第二个元素。 p>
提前谢谢。 p>
div>