php-src/Zend/tests/error_reporting10.phpt

36 lines
465 B
Plaintext
Raw Normal View History

2005-09-23 09:39:29 +00:00
--TEST--
testing @ and error_reporting - 10
--FILE--
<?php
2006-03-16 12:12:31 +00:00
error_reporting(E_ALL & ~E_STRICT);
2005-09-23 09:39:29 +00:00
function make_exception()
{
@$blah;
str_replace();
error_reporting(0);
throw new Exception();
}
try {
@make_exception();
} catch (Exception $e) {}
var_dump(error_reporting());
2006-03-16 12:12:31 +00:00
error_reporting(E_ALL&~E_NOTICE&~E_STRICT);
2005-09-23 09:39:29 +00:00
try {
@make_exception();
} catch (Exception $e) {}
var_dump(error_reporting());
echo "Done\n";
?>
--EXPECT--
int(14335)
int(14327)
2005-09-23 09:39:29 +00:00
Done