Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | function pre(mixed $var, bool $die = false): void |
||
14 | { |
||
15 | 1 | $html = '<pre style="padding:10px;margin:0;display:block;background: #EEE; box-shadow: inset 0 0 3px 3px #DDD; color: #666; text-shadow: 1px 1px 1px #CCC;border-radius: 5px;">'; |
|
16 | 1 | $html .= is_null($var) ? '<b>NULL</b>' : print_r($var, TRUE); |
|
17 | 1 | $html .= '</pre>'; |
|
18 | 1 | echo $html; |
|
19 | 1 | if ($die) { |
|
20 | die; |
||
21 | } |
||
58 |