1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/codes/Working with objects - Component overview - Collection - Getting collection count.php
2007-02-23 20:57:38 +00:00

10 lines
141 B
PHP

<?php
$users = $table->findAll();
$users->count();
// or
count($users); // Doctrine_Collection implements Countable interface
?>