mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
ae6f45ad45
This is confusing. The current output doesn't make it clear that we're in fact recursing to the top-level structure. Closes GH-5171.
55 lines
724 B
PHP
55 lines
724 B
PHP
--TEST--
|
|
Closure 026: Assigning a closure object to an array in $this
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
public function __construct() {
|
|
$a =& $this;
|
|
|
|
$a->a[] = function() {
|
|
return 1;
|
|
};
|
|
|
|
var_dump($this);
|
|
|
|
var_dump($this->a[0]());
|
|
}
|
|
}
|
|
|
|
$x = new foo;
|
|
|
|
print "--------------\n";
|
|
|
|
foreach ($x as $b => $c) {
|
|
var_dump($b, $c);
|
|
var_dump($c[0]());
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(foo)#%d (1) {
|
|
["a"]=>
|
|
array(1) {
|
|
[0]=>
|
|
object(Closure)#%d (1) {
|
|
["this"]=>
|
|
*RECURSION*
|
|
}
|
|
}
|
|
}
|
|
int(1)
|
|
--------------
|
|
string(1) "a"
|
|
array(1) {
|
|
[0]=>
|
|
object(Closure)#%d (1) {
|
|
["this"]=>
|
|
object(foo)#%d (1) {
|
|
["a"]=>
|
|
*RECURSION*
|
|
}
|
|
}
|
|
}
|
|
int(1)
|