X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fplatal.inc.php;h=5606f047d5c97b1151929b684d1628aa3a61f61a;hb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;hp=8ad7bf9c47f8ee39aca77133555a37d7db93b3da;hpb=5e2307dcebc38ebb0ffe469967a377eb3baed571;p=platal.git diff --git a/include/platal.inc.php b/include/platal.inc.php index 8ad7bf9..5606f04 100644 --- a/include/platal.inc.php +++ b/include/platal.inc.php @@ -1,6 +1,6 @@ "Error", + E_WARNING => "Warning", + E_PARSE => "Parsing Error", + E_NOTICE => "Notice", + E_CORE_ERROR => "Core Error", + E_CORE_WARNING => "Core Warning", + E_COMPILE_ERROR => "Compile Error", + E_COMPILE_WARNING => "Compile Warning", + E_USER_ERROR => "User Error", + E_USER_WARNING => "User Warning", + E_USER_NOTICE => "User Notice", + E_STRICT => "Runtime Notice" + ); + + global $globals; + if (!$globals->debug) { + if (strpos($errortype[$errno], 'Notice') !== false) { + return; + } + } + + $errstr = htmlentities($errstr); + $GLOBALS['pl_errors'][] = + "
". + "{$errortype[$errno]} $errstr
". + "$errfile : $errline". + "
"; +} + +function pl_dump_env() +{ + echo "
";
+    echo "\nSESSION: "; var_export($_SESSION);
+    echo "\nPOST:    "; var_export($_POST);
+    echo "\nGET:     "; var_export($_GET);
+    echo "\nCOOKIE:  "; var_export($_COOKIE);
+    echo "
"; +} + +function pl_print_errors() +{ + print join("\n", $GLOBALS['pl_errors']); +} + +set_error_handler('pl_error_handler', E_ALL | E_STRICT); +register_shutdown_function('pl_print_errors'); +// register_shutdown_function('pl_dump_env'); function pl_url($path, $query = null, $fragment = null) {