在php中获取特定的数组字段长度

时间:2015-08-06 07:02:51

标签: javascript php arrays multidimensional-array variable-length

我想从多维数组中获取特定的字段长度,但我不知道我能找到的所有内容是sizeof(数组)还是count(数组,count_recursive)

在javascript中我们可以这样做:

var modalInfo = {
                        name : 'imagePreviewModal',
                        title : 'show picture',
                        wh : [500, 400],
                        tabs : [['imagePreviewTab', body]],
                        buttons : [],
            cancelButton : false
        };
window.alert(modalInfo.tabs.length);

正文:tabs : [['imagePreviewTab',body]],是和数组。

我需要的是最后一行,我可以得到modalInfo数组字段选项卡的长度。 我怎么能在PHP中做同样的事情?

1 个答案:

答案 0 :(得分:1)

这应该适合你:

$count = count($modalInfo->tabs);