Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/spl/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/spl/tests/array_012.phpt |
--TEST-- SPL: ArrayIterator::count --FILE-- <?php echo "===Array===\n"; $a = array('zero' => 0, 'one' => 1, 'two' => 2); $it = new ArrayIterator($a); var_dump($it->count()); foreach($it as $key => $val) { echo "$key=>$val\n"; var_dump($it->count()); } var_dump($it->count()); echo "===Object===\n"; class test { public $zero = 0; protected $pro; public $one = 1; private $pri; public $two = 2; } $o = new test; $it = new ArrayIterator($o); var_dump($it->count()); foreach($it as $key => $val) { echo "$key=>$val\n"; var_dump($it->count()); } var_dump($it->count()); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- ===Array=== int(3) zero=>0 int(3) one=>1 int(3) two=>2 int(3) int(3) ===Object=== int(3) zero=>0 int(3) one=>1 int(3) two=>2 int(3) int(3) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare