count() public method

Count objects that match $query.
public count ( mixed $query = null ) : integer
$query mixed The query to count matches of.
return integer All objects matching $query.
Ejemplo n.º 1
0
 /**
  * Implementation of count() for Countable
  *
  * @return integer Number of elements in the list
  */
 public function count()
 {
     if (is_null($this->_count)) {
         $this->_count = $this->_mapper->count($this->_query);
     }
     return $this->_count;
 }