git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
d96a86a
Branches
Tags
master
ticket
webinterface.git
inc
debug.php
Mehr config-optionen und config via Wrapper-Funktion benutzen
bernd
commited
d96a86a
at 2009-05-23 15:24:52
debug.php
Blame
History
Raw
<?php require_once('config.php'); $debugmode = (isset($_GET['debug']) && config('enable_debug')); function DEBUG($str) { global $debugmode; if ($debugmode) if (is_array($str) || is_object($str)) { echo "<pre>".print_r($str, true)."</pre>\n"; } else { echo $str . "<br />\n"; } } DEBUG("GET: ".htmlentities(print_r($_GET, true))." / POST: ".htmlentities(print_r($_POST, true))); ?>