/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
spl
/
tests
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/ext/spl/tests/array_020.phpt
--TEST-- SPL: ArrayIterator overloading --FILE-- <?php class ArrayIteratorEx extends ArrayIterator { function rewind() { echo __METHOD__ . "\n"; ArrayIterator::rewind(); } function valid() { echo __METHOD__ . "\n"; return ArrayIterator::valid(); } function key() { echo __METHOD__ . "\n"; return ArrayIterator::key(); } function current() { echo __METHOD__ . "\n"; return ArrayIterator::current(); } function next() { echo __METHOD__ . "\n"; return ArrayIterator::next(); } } $ar = new ArrayIteratorEx(array(1,2)); foreach($ar as $k => $v) { var_dump($k); var_dump($v); } ?> --EXPECT-- ArrayIteratorEx::rewind ArrayIteratorEx::valid ArrayIteratorEx::current ArrayIteratorEx::key int(0) int(1) ArrayIteratorEx::next ArrayIteratorEx::valid ArrayIteratorEx::current ArrayIteratorEx::key int(1) int(2) ArrayIteratorEx::next ArrayIteratorEx::valid
Copyright ©2k19 -
Hexid
|
Tex7ure