我希望通过UILabel
metod得到第二个数组的计数,
如果将计数方法应用于外部数组我得到2,
但是ie count()
,我想要内部数组计数,
外部数组有计数2
count($get_comment)
答案 0 :(得分:0)
沿着theese线的某些东西应该起作用
$arrayCounter = array();
foreach($array as $key -> $getComment){
$arrayCounter[] = count($getComment);
}
这循环遍历父数组,其中$ array是外层,echo是数组内部每个项目的计数(内部数组)。
如果你想在某个地方保存这个数,你可以将计数推到另一个数组上。
{{1}}