我想从多维数组中获得一个特定的字段长度,但我不知道如何,我所能找到的是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);
body in: tabs : [['imagePreviewTab',body]],
is and array.
我需要的是最后一行,我可以得到modalInfo数组字段制表符的长度。如何在php中做同样的事情?
这应该可以为您工作:
$count = count($modalInfo->tabs);