我想从多维数组中获取特定的字段长度,但是我不知道怎么办,我只能找到sizeof(array)或count(array,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]],中的body是and数组。

我需要的是最后一行,我可以获取modalInfo数组字段选项卡的长度。
我如何在php中做同样的事情?

最佳答案

这应该为您工作:

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

10-05 18:27