PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php class A { protected \stdClass $x; public function __construct() { $this->reset(); } public function getX() { return $this->x; } public function reset() { $this->x = new stdClass(); $this->x->random = rand(0, 1000); } } $a = new A(); $test = $a->getX(); echo spl_object_id($test) . "\n"; $a->reset(); echo spl_object_id($test) . "\n"; $test = $a->getX(); echo spl_object_id($test) . "\n";
Show:  
Copy Clear