Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug68262.phpt

--TEST--
Bug #68262: Broken reference across cloned objects
--FILE--
<?php

class C {
    public $p;
}

$first = new C;
$first->p = 'init';

$clone = clone $first;
$ref =& $first->p;
unset($ref);

$clone = clone $first;
$clone->p = 'foo';

var_dump($first->p);

?>
--EXPECT--
string(4) "init"