Basic Components - Collection - Getting collection count.php 141 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9
<?php
$users = $table->findAll();

$users->count();

// or

count($users); // Doctrine_Collection implements Countable interface
?>