![]() ![]() | ![]() |
1.1 ! misho 1: --TEST-- ! 2: Bug #52484 (__set() ignores setting properties with empty names) ! 3: --FILE-- ! 4: <?php ! 5: ! 6: class A { ! 7: function __unset($prop) { ! 8: unset($this->$prop); ! 9: } ! 10: } ! 11: ! 12: $a = new A(); ! 13: $prop = null; ! 14: ! 15: unset($a->$prop); ! 16: ! 17: ?> ! 18: --EXPECTF-- ! 19: Fatal error: Cannot access empty property in %s on line %d