使用 count() 计算实现 ArrayAccess 的对象的元素数量?
当一个类实现 ArrayAccess 接口时,它就可以作为数组使用,包括 OffsetGet、OffsetSet 等。
我没有看到的一件事是当我们想要 count()
或 sizeof()
时的实现,以我对 PHP 的有限了解,这相当于相同的。
标准 PHP 中已经实现了类似的功能吗?
When a class implements the ArrayAccess
interface, it becomes ready to function as an array, complete with OffsetGet, OffsetSet and so on.
One thing I didn't see was an implementation for when we want to count()
or sizeof()
it, which, in my limited knowledge of PHP, amounts to the same.
Is there anything like it already implemented in standard PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的方法是实现 Countable 接口
Example #1 Countable::count() example
换句话说,您实现了
count( )
应该返回你自己。The correct way would be to implement the Countable interface
Example #1 Countable::count() example
In other words, you implement the logic what
count()
should return yourself.