mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
26 lines
308 B
PHP
Executable File
26 lines
308 B
PHP
Executable File
--TEST--
|
|
foreach() with foreach($o->mthd()->arr)
|
|
--FILE--
|
|
<?php
|
|
class Test {
|
|
public $a = array(1,2,3,4,5); // removed, crash too
|
|
function c() {
|
|
return new Test();
|
|
}
|
|
|
|
}
|
|
$obj = new Test();
|
|
foreach ($obj->c()->a as $value) {
|
|
print "$value\n";
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
===DONE===
|