PHP 8.4.2 Released!

Countable::count

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

Countable::countZählt die Elemente eines Objekts

Beschreibung

public Countable::count(): int

Diese Methode wird ausgeführt, wenn value für count() ein Objekt ist, das Countable implementiert.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Die benutzerdefinierte Anzahl als int.

Beispiele

Beispiel #1 Countable::count()-Beispiel

<?php

class Counter implements Countable
{
private
$count = 0;

public function
count(): int
{
return ++
$this->count;
}
}

$counter = new Counter;

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

User Contributed Notes 1 note

up
13
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