PHP Doku:: Count elements of an object - countable.count.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)InterfacesThe Countable interfaceCountable::count

Ein Service von Reinhard Neidl - Webprogrammierung.

The Countable interface

<<The Countable interface

The OuterIterator interface>>

Countable::count

(PHP 5 >= 5.1.0)

Countable::countCount elements of an object

Beschreibung

abstract public int Countable::count ( void )

This method is executed when using the count() function on an object implementing Countable.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The custom count as an integer.

Hinweis:

The return value is cast to an integer.

Beispiele

Beispiel #1 Countable::count() example

<?php
class myCounter implements Countable {
    public function 
count() {
        static 
$count 0;
        return ++
$count;
    }
}

$counter = new myCounter;

for(
$i=0$i<10; ++$i) {
    echo 
"I have been count()ed " count($counter) . " times\n";
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

I have been count()ed 1 times
I have been count()ed 2 times
I have been count()ed 3 times
I have been count()ed 4 times
I have been count()ed 5 times
I have been count()ed 6 times
I have been count()ed 7 times
I have been count()ed 8 times
I have been count()ed 9 times
I have been count()ed 10 times


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)