mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
36 lines
445 B
PHP
36 lines
445 B
PHP
--TEST--
|
|
testing @ and error_reporting - 10
|
|
--FILE--
|
|
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
function make_exception()
|
|
{
|
|
@$blah;
|
|
str_replace();
|
|
error_reporting(0);
|
|
throw new Exception();
|
|
}
|
|
|
|
try {
|
|
@make_exception();
|
|
} catch (Exception $e) {}
|
|
|
|
var_dump(error_reporting());
|
|
|
|
error_reporting(E_ALL&~E_NOTICE);
|
|
|
|
try {
|
|
@make_exception();
|
|
} catch (Exception $e) {}
|
|
|
|
var_dump(error_reporting());
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
int(32767)
|
|
int(32759)
|
|
Done
|