Implements [Countable::count], returns the total number of rows.
echo count($result);
integer Module_Database_Result::count( )
integer
287288289290291292293294public
function
count
()
{
if
( null===
$this
->_total_rows )
{
$this
->_total_rows =
$this
->total_count();
}
return
$this
->_total_rows;
}