| 1234567891011121314151617181920 |
- <?php
- class DBG {
- /**
- * examples:
- * DBG::_('DBG_SCH', '1', "fieldsConfig({$idTable})", $fieldsConfig, __CLASS__, __FUNCTION__, __LINE__ );
- */
- public static function _($reqKey, $reqValue, $label, $variable, $className, $functionName, $lineNumber, $borderColor = 'red') {
- if ($reqValue == V::get($reqKey, '', $_GET)) {
- ?>
- <pre style="max-height:200px;max-width:800px;overflow:auto;border:1px solid <?php echo $borderColor; ?>;text-align:left;"
- ><?php echo "{$label} ({$className}::{$functionName}:{$lineNumber}):\n"; ?>
- <?php print_r($variable);?>
- </pre>
- <?php
- }
- }
- }
|