Arquivos
hhvm/hphp/test/slow/array_iterator/442.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

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'));