error_reporting09.phpt 445 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. testing @ and error_reporting - 9
  3. --FILE--
  4. <?php
  5. error_reporting(E_ALL & ~E_DEPRECATED);
  6. function bar() {
  7. echo @$blah;
  8. echo $undef2;
  9. }
  10. function foo() {
  11. echo @$undef;
  12. error_reporting(E_ALL);
  13. echo $blah;
  14. return bar();
  15. }
  16. @foo();
  17. var_dump(error_reporting());
  18. echo "Done\n";
  19. ?>
  20. --EXPECTF--
  21. Warning: Undefined variable $blah in %s on line %d
  22. Warning: Undefined variable $undef2 in %s on line %d
  23. int(32767)
  24. Done