Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Kirby CMS,我需要找出我有多少帖子。
我的帖子得到了
$posts = $pages->find('posts')->children();
这object与 10 个项目相呼应(链接到帖子)。
object
它不是一个数组,所以使用count()返回 1。
count()
如何像使用数组一样计算此对象中的项目?
我对这个图书馆没有经验。但是试试这个,它可能会起作用:
$count = $pages->find('posts')->children()->count();