bug62005.phpt 436 B

1234567891011121314151617
  1. --TEST--
  2. Bug #62005 (unexpected behavior when incrementally assigning to a member of a null object)
  3. --FILE--
  4. <?php
  5. function add_points($player, $points) {
  6. $player->energy += $points;
  7. print_r($player);
  8. }
  9. add_points(NULL, 2);
  10. --EXPECTF--
  11. Warning: Creating default object from empty value in %sbug62005.php on line %d
  12. Notice: Undefined property: stdClass::$energy in %sbug62005.php on line 3
  13. stdClass Object
  14. (
  15. [energy] => 2
  16. )