exception_during_property_assign_op.phpt 313 B

123456789101112131415161718192021
  1. --TEST--
  2. Exception during read part of compound assignment operation on a property
  3. --FILE--
  4. <?php
  5. class Test {
  6. public function __get($name) {
  7. throw new Exception;
  8. }
  9. }
  10. $test = new Test;
  11. try {
  12. $test->prop += 42;
  13. } catch (Exception $e) {}
  14. var_dump($test);
  15. ?>
  16. --EXPECT--
  17. object(Test)#1 (0) {
  18. }