mirror of
https://github.com/php/php-src.git
synced 2024-12-22 16:30:02 +08:00
29 lines
325 B
Plaintext
29 lines
325 B
Plaintext
|
--TEST--
|
||
|
Cloning stdClass
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$x[] = clone new stdclass;
|
||
|
$x[] = clone new stdclass;
|
||
|
$x[] = clone new stdclass;
|
||
|
|
||
|
$x[0]->a = 1;
|
||
|
|
||
|
var_dump($x);
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
array(3) {
|
||
|
[0]=>
|
||
|
object(stdClass)#%d (1) {
|
||
|
["a"]=>
|
||
|
int(1)
|
||
|
}
|
||
|
[1]=>
|
||
|
object(stdClass)#%d (0) {
|
||
|
}
|
||
|
[2]=>
|
||
|
object(stdClass)#%d (0) {
|
||
|
}
|
||
|
}
|