IMP_Indices::count PHP Méthode

count() public méthode

Index count.
public count ( ) : integer
Résultat integer The number of indices.
    public function count()
    {
        $count = 0;
        foreach (array_keys($this->_indices) as $key) {
            $count += count($this->_indices[$key]);
        }
        return $count;
    }