$arr = NSZone::find_all(array('per_page'=>20, 'page'=>1));
返回结果是
[0] => NSZone Object
(
[xml_skip_attribs:protected] => Array
(
[0] => id
)
[vals:protected] => Array
(
[total_count] => 3
)
)
他正在访问
arr[0]['vals:protected']['total_count'] in this way arr[0]->total_count()
这意味着 total_count() 是一个函数,而根据数组结构,它看起来像数组索引。 请解释一下这段代码,它是如何工作的?什么是 [vals:protected],它也可以是公共的、私有的等,请问您知道更多解释吗?