PHP - 计算对象中的项目

时间:2013-07-24 00:54:28

标签: php

我正在使用Kirby CMS,我需要找出我有多少帖子。

我的帖子是

$posts = $pages->find('posts')->children();

回复object有10个项目(链接到帖子)。

它不是数组,所以使用count()返回1。

如何计算此对象中的项目,就像使用数组一样?

1 个答案:

答案 0 :(得分:2)

我没有使用此库的经验。但试试这个,可能工作:

$count = $pages->find('posts')->children()->count();