indirect_var_access_misoptimization.phpt 409 B

123456789101112131415161718192021
  1. --TEST--
  2. Misoptimization when variable is modified by assert()
  3. --INI--
  4. zend.assertions=1
  5. --FILE--
  6. <?php
  7. function test() {
  8. $i = 0;
  9. assert('$i = new stdClass');
  10. $i += 1;
  11. var_dump($i);
  12. }
  13. test();
  14. ?>
  15. --EXPECTF--
  16. Deprecated: assert(): Calling assert() with a string argument is deprecated in %s on line %d
  17. Notice: Object of class stdClass could not be converted to number in %s on line %d
  18. int(2)