503f75d08b
These names don't make sense now that we run both suites the same way.
3 linhas
272 B
PHP
3 linhas
272 B
PHP
<?php
|
|
|
|
function test($a) { $it = new ArrayIterator($a); while ($it->valid()) { var_dump($it->key()); var_dump($it->current()); $it->next(); }}test(array('a' => 'x', false => 'y', '1' => false, null => 'z', 'c' => 'w')); |