Countable::count

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

Countable::countZählt die Elemente eines Objekts

Beschreibung

public Countable::count(): int

Die Methode wird ausgeführt, wenn die Funktion count() auf einem Objekt aufgerufen wird, dass Countable implementiert.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Die benutzerdefinierte Anzahl als int.

Hinweis:

Der Rückgabewert wird in einen int-Wert umgewandelt.

Beispiele

Beispiel #1 Countable::count()-Beispiel

<?php
class myCounter implements Countable {
private
$count = 0;
public function
count() {
return ++
$this->$count;
}
}

$counter = new myCounter;

for(
$i=0; $i<10; ++$i) {
echo
"Ich wurde " . count($counter) . " mal ge-count()ed\n";
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Ich wurde 1 mal ge-count()ed
Ich wurde 2 mal ge-count()ed
Ich wurde 3 mal ge-count()ed
Ich wurde 4 mal ge-count()ed
Ich wurde 5 mal ge-count()ed
Ich wurde 6 mal ge-count()ed
Ich wurde 7 mal ge-count()ed
Ich wurde 8 mal ge-count()ed
Ich wurde 9 mal ge-count()ed
Ich wurde 10 mal ge-count()ed

add a note add a note

User Contributed Notes 1 note

up
11
SenseException
10 years ago
Even though Countable::count method is called when the object implementing Countable is used in count() function, the second parameter of count, $mode, has no influence to your class method.

$mode is not passed to  Countable::count:

<?php

class Foo implements Countable
{
    public function
count()
    {
       
var_dump(func_get_args());
        return
1;
    }
}

count(new Foo(), COUNT_RECURSIVE);

?>

var_dump output:

array(0) {
}
To Top