1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
--TEST-- Bug #26182 (Object properties created redundantly) --INI-- error_reporting=4095 --FILE-- <?php class A { function NotAConstructor () { if (isset($this->x)) { //just for demo } } } $t = new A (); print_r($t); ?> --EXPECT-- A Object ( )