mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
31 lines
339 B
PHP
31 lines
339 B
PHP
--TEST--
|
|
testing @ and error_reporting - 6
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
function foo1($arg) {
|
|
}
|
|
|
|
function foo2($arg) {
|
|
}
|
|
|
|
function foo3($arg) {
|
|
echo $undef3;
|
|
throw new Exception("test");
|
|
}
|
|
|
|
try {
|
|
@foo1(@foo2(@foo3()));
|
|
} catch (Exception $e) {
|
|
}
|
|
|
|
var_dump(error_reporting());
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
int(6143)
|
|
Done
|