diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /tests/lang/foreachLoopIterator.002.phpt | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'tests/lang/foreachLoopIterator.002.phpt')
-rw-r--r-- | tests/lang/foreachLoopIterator.002.phpt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/lang/foreachLoopIterator.002.phpt b/tests/lang/foreachLoopIterator.002.phpt new file mode 100644 index 0000000..f40e09b --- /dev/null +++ b/tests/lang/foreachLoopIterator.002.phpt @@ -0,0 +1,24 @@ +--TEST-- +foreach with iterator and &$value reference +--FILE-- +<?php + +class MyIterator implements Iterator { + public function valid() { return true; } + public function next() { } + public function rewind() { } + public function current() { } + public function key() { } +} + +$f = new MyIterator; +echo "-----( Try to iterate with &\$value: )-----\n"; +foreach ($f as $k=>&$v) { + echo "$k => $v\n"; +} + +?> +--EXPECTF-- +-----( Try to iterate with &$value: )----- + +Fatal error: An iterator cannot be used with foreach by reference in %s on line 13
\ No newline at end of file |