1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/spl/tests/fixedarray_019.phpt
Christoph M. Becker dabc28d182 Fix #78880: Spelling error report
We fix the most often occuring typos according to a recent codespell
report[1] in tests, code comments and documentation.

[1] <https://fossies.org/linux/test/php-src-master-f8f48ce.191129.tar.gz/codespell.html>.
2019-12-21 11:58:00 +01:00

52 lines
788 B
PHP

--TEST--
SPL: FixedArray: overridden iterator methods
--FILE--
<?php
class SplFixedArray2 extends SplFixedArray {
public function rewind() {
echo "rewind\n";
return parent::rewind();
}
public function valid() {
echo "valid\n";
return parent::valid();
}
public function next() {
echo "next\n";
return parent::next();
}
public function current() {
echo "current\n";
return parent::current();
}
public function key() {
echo "key\n";
return parent::key();
}
}
$fa = new SplFixedArray2(3);
foreach($fa as $k=>$v) {
echo "$k=>";
var_dump($v);
}
?>
--EXPECT--
rewind
valid
current
key
0=>NULL
next
valid
current
key
1=>NULL
next
valid
current
key
2=>NULL
next
valid