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