summaryrefslogtreecommitdiff
path: root/Zend/tests/error_reporting10.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/error_reporting10.phpt')
-rw-r--r--Zend/tests/error_reporting10.phpt35
1 files changed, 35 insertions, 0 deletions
diff --git a/Zend/tests/error_reporting10.phpt b/Zend/tests/error_reporting10.phpt
new file mode 100644
index 0000000..12b1db5
--- /dev/null
+++ b/Zend/tests/error_reporting10.phpt
@@ -0,0 +1,35 @@
+--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