php_errormsg_misoptimization.phpt 441 B

12345678910111213141516171819202122
  1. --TEST--
  2. The variable $php_errormsg shouldn't be optimized as it may be unpredictably modified
  3. --INI--
  4. track_errors=1
  5. --FILE--
  6. <?php
  7. function test() {
  8. $php_errormsg = 1;
  9. echo $undef;
  10. var_dump($php_errormsg + 1);
  11. }
  12. test();
  13. ?>
  14. --EXPECTF--
  15. Deprecated: Directive 'track_errors' is deprecated in Unknown on line 0
  16. Notice: Undefined variable: undef in %s on line %d
  17. Warning: A non-numeric value encountered in %s on line %d
  18. int(1)