Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug34467.phpt

--TEST--
Bug #34467 (foreach + __get + __set incosistency)
--FILE--
<?php
class abc {
	private $arr;

	function __set ($key, $value) {
    $this->arr[$key] = $value;
  }

	function __get ($key) {
	  return $this->arr[$key];
	}
}
$abc = new abc();
foreach (array (1,2,3) as $abc->k => $abc->v) {
	var_dump($abc->k,$abc->v);
}
?>
--EXPECT--
int(0)
int(1)
int(1)
int(2)
int(2)
int(3)