(PHP 5 >= 5.1.0, PHP 7)
Countable::count — 统锟斤拷一锟斤拷锟斤拷锟斤拷锟皆拷馗锟斤拷锟�
锟斤拷使锟斤拷 count()锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷一锟斤拷实锟斤拷锟斤拷 Countable锟侥讹拷锟斤拷时锟斤拷锟斤拷锟斤拷锟斤拷岜恢达拷锟�.
锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷
Example #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";
}
?>
锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�
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