symfony 统计用户数
我使用 symfony 1.4.12 和原则。我有 sfGuardUser 表;我可以像这样计算所有记录:
$count_user=Doctrine::getTable('sfGuardUser')->count();
我在表“created_at”中有字段;如果可以统计当年创建的所有用户吗? 谢谢你!
I use symfony 1.4.12 with doctrine. I have sfGuardUser table; I can count all records like this:
$count_user=Doctrine::getTable('sfGuardUser')->count();
I have field in table "created_at"; If it possible to count all users, that where created in current year?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有多种方法可以获取记录集合的计数。当您在查询对象或 Table 实例上调用 ->count() 函数时,Doctrine 会自动为您创建计数查询。
例如,如果您想知道当年的用户总数和创建的用户数量,您可以按如下方式操作:
There are various ways to get the count of a record collection. Doctrine automatically creates a count query for you when you call the ->count() function on a query object or Table instance.
If for instance you would like to know the total amount of users and the amount of users created in the current year, you could go about it as follows: