/ Published in: PHP
Expand |
Embed | Plain Text
function GetDbgTxt($txt, $explain = null, $htmlentities = true) { if ($txt == null || $txt == '') { $txt = "NULL"; } $out = ''; if ($explain) { if($htmlentities){ }else{ } $out .= CRLF; } if($htmlentities){ }else{ } return $out; } function DebugBoth($data, $explain = null){ DebugPrint($data, $explain); DebugLog($data, $explain); } function DebugLog($data, $explain = null) { } function DebugPrint($data, $explain = null, $nl2br = false) { global $Bajotumn_pagelevel_debug; if ($Bajotumn_pagelevel_debug) { $out = GetDbgTxt($data, $explain); if ($nl2br == true) { } echo "<pre>$out</pre>"; } } }
You need to login to post a comment.
