X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fplatal.inc.php;h=0f1842993da251983fa29276b4b04758028e942d;hb=e92ecb8c24421ca1dd4f87ad7478d0d8277e1f60;hp=badaef5b744ff48bc69717c626c267d728694880;hpb=bf9d90c0821df2c226822c4691ef5e8ec633490d;p=platal.git diff --git a/include/platal.inc.php b/include/platal.inc.php index badaef5..0f18429 100644 --- a/include/platal.inc.php +++ b/include/platal.inc.php @@ -1,6 +1,6 @@ ". - "{$type} $errstr
". - "$errfile : $errline". - ""; -} + $error = strpos($type, 'Warning') !== false || strpos($type, 'Error') !==false; -function pl_clear_errors() -{ - unset($GLOBALS['pl_errors']); + pl_autoload('PlBacktrace'); + if (!isset(PlBacktrace::$bt['PHP Errors'])) { + new PlBacktrace('PHP Errors'); + } + PlBacktrace::$bt['PHP Errors']->newEvent("$type: $errstr", + 0, $error ? $errstr : null, + array(array('file' => $errfile, + 'line' => $errline))); } function pl_dump_env() @@ -111,15 +127,27 @@ function pl_dump_env() echo ""; } -function pl_print_errors() +function pl_print_errors($html = false) { - if (!empty($GLOBALS['pl_errors'])) { - print join("\n", $GLOBALS['pl_errors']); + if (!isset(PlBacktrace::$bt['PHP Errors'])) { + return; + } + foreach (PlBacktrace::$bt['PHP Errors']->traces as $trace) { + if ($html) { + echo "
";
+        }
+        print "{$trace['action']}\n";
+        print "  {$trace['data'][0]['file']}: {$trace['data'][0]['line']}\n";
+        if ($html) {
+            echo "
"; + } } } set_error_handler('pl_error_handler', E_ALL | E_STRICT); -register_shutdown_function('pl_print_errors'); +if (php_sapi_name() == 'cli') { + register_shutdown_function('pl_print_errors'); +} //register_shutdown_function('pl_dump_env'); /** Check if the string is utf8 @@ -176,6 +204,24 @@ function pl_entity_decode($text, $mode = ENT_COMPAT) return html_entity_decode($text, $mode, 'UTF-8'); } +function pl_flatten_aux(array &$dest, array $src) +{ + foreach ($src as $val) { + if (is_array($val)) { + pl_flatten_aux($dest, $val); + } else { + $dest[] = $val; + } + } +} + +function pl_flatten(array $array) +{ + $res = array(); + pl_flatten_aux($res, $array); + return $res; +} + /** * Returns the path of a static content, including, when appropriate, the * version number. This is used to avoid cross-version cache issues, by ensuiring