lithium\util\Collection::count()
Counts the items of the object.
Returns
integerReturns the number of items in the collection.
Source
public function count() {
$count = iterator_count($this);
$this->rewind();
return $count;
}
Counts the items of the object.
Returns the number of items in the collection.
public function count() {
$count = iterator_count($this);
$this->rewind();
return $count;
}