mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
28 lines
399 B
PHP
28 lines
399 B
PHP
--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)
|