-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/lang/
File Upload :
Current File : //usr/src/php/tests/lang/foreachLoopIterator.002.phpt

--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

Copyright © 2017 || Recoded By Mr.Bumblebee