php-src/Zend/tests/bug27731.phpt
2004-03-29 00:50:52 +00:00

11 lines
207 B
PHP

--TEST--
Bug #27731 (error_reporing() call inside @ block does not work correctly)
--FILE--
<?php
error_reporting(E_ALL ^ E_NOTICE);
@error_reporting(0);
var_dump(error_reporting());
?>
--EXPECT--
int(0)