Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/error_reporting07.phpt

--TEST--
testing @ and error_reporting - 7
--FILE--
<?php

error_reporting(E_ALL);

function foo1($arg) {
}

function foo2($arg) {
}

function foo3() {
	echo $undef3;
	throw new Exception("test");
}

try {
	@error_reporting(@foo1(@foo2(@foo3())));
} catch (Exception $e) {
}

var_dump(error_reporting());

echo "Done\n";
?>
--EXPECT--
int(32767)
Done