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.
コード例 #1
0
ファイル: List.php プロジェクト: jubinpatel/horde
 /**
  * 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;
 }