mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
27 lines
335 B
PHP
27 lines
335 B
PHP
--TEST--
|
|
Indirect method call and cloning
|
|
--FILE--
|
|
<?php
|
|
|
|
|
|
class bar {
|
|
public $z;
|
|
|
|
public function __construct() {
|
|
$this->z = new stdclass;
|
|
}
|
|
public function getZ() {
|
|
return $this->z;
|
|
}
|
|
}
|
|
|
|
var_dump(clone (new bar)->z);
|
|
var_dump(clone (new bar)->getZ());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(stdClass)#%d (0) {
|
|
}
|
|
object(stdClass)#%d (0) {
|
|
}
|