-
Notifications
You must be signed in to change notification settings - Fork 14
/
class.krumo.php
1356 lines (1208 loc) · 24.4 KB
/
class.krumo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Krumo: Structured information display solution
*
* Krumo is a debugging tool, which displays structured information about any
* PHP variable. It is a nice replacement for print_r() or var_dump() which are
* used by a lot of PHP developers.
*
* @author Kaloyan K. Tsvetkov <kaloyan@kaloyan.info>
* @license https://opensource.org/licenses/LGPL-2.1 GNU Lesser General public License Version 2.1
*/
//////////////////////////////////////////////////////////////////////////////
/**
* Krumo API
*
* This class stores the Krumo API for rendering and
* displaying the structured information it is reporting
*
* @package Krumo
*/
class krumo
{
const version = '0.4.4';
/**
* Prints a debug backtrace
*/
static function backtrace()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
self::$pre_name = 'debug_backtrace()';
return self::dump(debug_backtrace());
}
/**
* Prints a list of all currently declared classes.
*/
static function classes()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all currently declared classes.
</div>
<?php
self::$pre_name = 'get_declared_classes()';
return self::dump(get_declared_classes());
}
/**
* Prints a list of all currently declared interfaces (PHP5 only).
*/
static function interfaces()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all currently declared interfaces.
</div>
<?php
self::$pre_name = 'get_declared_interfaces()';
return self::dump(get_declared_interfaces());
}
/**
* Prints a list of all currently included (or required) files.
*/
static function includes()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all currently included (or required) files.
</div>
<?php
self::$pre_name = 'get_included_files()';
return self::dump(get_included_files());
}
/**
* Prints a list of all currently declared functions.
*/
static function functions()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all currently declared functions.
</div>
<?php
self::$pre_name = 'get_defined_functions()';
return self::dump(get_defined_functions());
}
/**
* Prints a list of all currently declared constants.
*/
static function defines()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all currently declared constants (defines).
</div>
<?php
self::$pre_name = 'get_defined_constants()';
return self::dump(get_defined_constants());
}
/**
* Prints a list of all currently loaded PHP extensions.
*/
static function extensions()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all currently loaded PHP extensions.
</div>
<?php
self::$pre_name = 'get_loaded_extensions()';
return self::dump(get_loaded_extensions());
}
/**
* Prints a list of all HTTP request headers.
*/
static function headers()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
if (!function_exists('getallheaders'))
{
function getallheaders()
{
$headers = array ();
foreach ($_SERVER as $name => $value)
{
if (substr($name, 0, 5) == 'HTTP_')
{
$key = str_replace(
' ',
'-',
ucwords(strtolower(
str_replace('_', ' ', substr($name, 5))
))
);
$headers[$key] = $value;
}
}
return $headers;
}
}
// render it
//
?>
<div class="krumo-title">
This is a list of all HTTP request headers.
</div>
<?php
self::$pre_name = 'getallheaders()';
return self::dump(getallheaders());
}
/**
* Prints a list of the configuration settings read from <i>php.ini</i>
*/
static function phpini()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
if (!is_readable(get_cfg_var('cfg_file_path')))
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of the configuration settings read from <code><b><?php
echo htmlspecialchars( get_cfg_var('cfg_file_path') );
?></b></code>.
</div>
<?php
self::$pre_name = get_cfg_var('cfg_file_path');
return self::dump(parse_ini_file(get_cfg_var('cfg_file_path'), true));
}
/**
* Prints a list of all your configuration settings.
*/
static function conf()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all your configuration settings.
</div>
<?php
self::$pre_name = 'ini_get_all()';
return self::dump(ini_get_all());
}
/**
* Prints a list of the specified directories under your <i>include_path</i> option.
*/
static function path()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of the specified directories under your <code><b>include_path</b></code> option.
</div>
<?php
self::$pre_name = 'ini_get("include_path")';
return self::dump(explode(PATH_SEPARATOR, ini_get('include_path')));
}
/**
* Prints a list of all the values from the <i>$_REQUEST</i> array.
*/
static function request()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_REQUEST</b></code> array.
</div>
<?php
self::$pre_name = '$_REQUEST';
return self::dump($_REQUEST);
}
/**
* Prints a list of all the values from the <i>$_GET</i> array.
*/
static function get()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_GET</b></code> array.
</div>
<?php
self::$pre_name = '$_GET';
return self::dump($_GET);
}
/**
* Prints a list of all the values from the <i>$_POST</i> array.
*/
static function post()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_POST</b></code> array.
</div>
<?php
self::$pre_name = '$_POST';
return self::dump($_POST);
}
/**
* Prints a list of all the values from the <i>$_SERVER</i> array.
*/
static function server()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_SERVER</b></code> array.
</div>
<?php
self::$pre_name = '$_SERVER';
return self::dump($_SERVER);
}
/**
* Prints a list of all the values from the <i>$_COOKIE</i> array.
*/
static function cookie()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_COOKIE</b></code> array.
</div>
<?php
self::$pre_name = '$_COOKIE';
return self::dump($_COOKIE);
}
/**
* Prints a list of all the values from the <i>$_ENV</i> array.
*/
static function env()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_ENV</b></code> array.
</div>
<?php
self::$pre_name = '$_ENV';
return self::dump($_ENV);
}
/**
* Prints a list of all the values from the <i>$_SESSION</i> array.
*/
static function session()
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_SESSION</b></code> array.
</div>
<?php
self::$pre_name = '$_SESSION';
return self::dump( isset($_SESSION) ? $_SESSION : array());
}
/**
* Prints a list of all the values from an INI file.
* @param string $ini_file
*/
static function ini($ini_file)
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// read it
//
if (!$_ = @parse_ini_file($ini_file, 1))
{
return false;
}
// render it
//
?>
<div class="krumo-title">
This is a list of all the values from the <code><b><?php
echo realpath($ini_file)
? realpath($ini_file)
: $ini_file;
?></b></code> INI file.
</div>
<?php
self::$pre_name = $ini_file;
return self::dump($_);
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* @var string preemptive name for some of the lazy dumps
*/
protected static $pre_name = '';
/**
* Dump information about a variable
* @param mixed $data,...
*/
static function dump($data)
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
// more arguments ?
//
if (func_num_args() > 1)
{
$args = func_get_args();
foreach($args as $arg)
{
self::dump( $arg );
}
return true;
}
// the css ?
//
self::_css();
// find caller
//
$trace = debug_backtrace(2); // "2" is DEBUG_BACKTRACE_IGNORE_ARGS
while($d = array_pop($trace))
{
if (0 === strcasecmp($d['function'], 'krumo'))
{
break;
}
if (!empty($d['class']))
{
if (0 === strcasecmp($d['class'], 'krumo'))
{
break;
}
}
}
// find what the argument was ?
//
$name = '';
if (!empty(self::$pre_name))
{
$name = self::$pre_name;
self::$pre_name = '';
} else
if (!empty($d['file']))
{
$f = file($d['file']);
$name = trim($f[$d['line']-1]);
// multi-line call ?
//
if (false === stripos($name, 'krumo'))
{
for ($i=$d['line']-2; $i >=0; $i--)
{
$name = $f[$i] . $name;
if (false !== stripos($name, 'krumo'))
{
break;
}
}
}
$name = preg_replace(array(
'~^.+(krumo)~Uis',
'~\?>$~',
),
array(
'\\1',
''
),
$name);
unset($f);
}
// the content
//
?>
<div class="krumo-root">
<ul class="krumo-node krumo-first">
<?php echo self::_dump($data, $name);?>
<li class="krumo-footnote">
<div class="krumo-version" style="white-space:nowrap;">
<h6>Krumo v<?php echo self::version;?></h6> | <a
href="https://github.com/kktsvetkov/krumo"
target="_blank">github.com/kktsvetkov/krumo</a>
</div>
<?php if (!empty($d['file']))
{
?>
<span class="krumo-call">
<?php printf(
'Called from <code>%s</code>, line <code>%d</code>',
$d['file'],
$d['line']
); ?>
</span>
<?php
} ?>
</li>
</ul>
</div>
<?php
// flee the hive
//
$_recursion_marker = self::_marker();
if ($hive =& self::_hive($dummy))
{
foreach($hive as $i=>$bee)
{
if (is_object($bee))
{
unset($hive[$i]->$_recursion_marker);
} else
{
unset($hive[$i][$_recursion_marker]);
}
}
}
}
/**
* Return the dump information about variable\variables
* @param mixed $data,... pass as many arguments as you want
* @return string
*/
static function fetch($data)
{
// disabled ?
//
if (!self::_debug())
{
return false;
}
ob_start();
call_user_func_array(
array(get_called_class(), 'dump'),
func_get_args()
);
return ob_get_clean();
}
/**
* Prints the dump information about variable\variables at end of a script
* @param mixed $data,... pass as many arguments as you want
* @return string
*/
static function queue($data)
{
$output = call_user_func_array(
array(get_called_class(), 'fetch'),
func_get_args()
);
register_shutdown_function('printf', '%s', $output);
return $output;
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* @var string name of the selected skin; must be the
* name of one of the folders inside the skins/
* folder that contains "skin.css" inside it
*/
static $skin = 'kaloyan.info';
/**
* Print the skin (CSS)
* @return boolean
*/
private static function _css()
{
static $_css = false;
// already printed ?
//
if ($_css)
{
return true;
}
$css = '';
$skin = self::$skin;
// legacy skin names
//
switch ($skin)
{
case 'schablon.com':
$skin = 'kaloyan.info';
break;
}
// custom selected skin ?
//
$skin_file = __DIR__ . "/skins/{$skin}/skin.css";
if (!file_exists($skin_file))
{
trigger_error(
"Unable to find \"{$skin_file}\"",
E_USER_WARNING);
// use default skin
//
$skin_file = __DIR__ . "/skins/default/skin.css";
}
$css = file_get_contents($skin_file);
if (empty($css))
{
return false;
}
// print ?
//
?>
<style type="text/css">
<?php echo $css, "\n", '/* Using Krumo Skin: ', str_replace(__DIR__, '', $skin_file), ' */'; ?>
</style>
<?php
self::_js();
return true;
}
/**
* Print the JS
*/
protected static function _js()
{
?><script type="text/javascript"> krumo = {
/**
* Add a CSS class to an HTML element
* @param {HtmlElement} el
* @param {String} className
*/
"reclass": function(el, className)
{
if (el.className.indexOf(className) < 0)
{
el.className += (' ' + className);
}
},
/**
* Remove a CSS class to an HTML element
* @param {HtmlElement} el
* @param {String} className
*/
"unclass": function(el, className)
{
if (el.className.indexOf(className) > -1)
{
el.className = el.className.replace(className, '');
}
},
/**
* Toggle the nodes connected to an HTML element
* @param {HtmlElement} el
*/
"toggle": function(el)
{
var ul = el.parentNode.getElementsByTagName('ul');
for (var i=0; i<ul.length; i++)
{
if (ul[i].parentNode.parentNode == el.parentNode)
{
ul[i].parentNode.style.display = (ul[i].parentNode.style.display == 'none')
? 'block'
: 'none';
}
}
(ul[0].parentNode.style.display == 'block')
? krumo.reclass(el, 'krumo-opened')
: krumo.unclass(el, 'krumo-opened');
}
}
</script><?php
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* Enable Krumo
*
* @return boolean
*/
static function enable()
{
return true === self::_debug(true);
}
/**
* Disable Krumo
*
* @return boolean
*/
static function disable()
{
return false === self::_debug(false);
}
/**
* Get\Set Krumo state: whether it is enabled or disabled
*
* @param boolean $state
* @return boolean
*/
private static function _debug($state=null)
{
static $_ = true;
// set
//
if (isset($state))
{
$_ = (boolean) $state;
}
// get
//
return $_;
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* Dump information about a variable
*
* @param mixed $data
* @param string $name
*/
private static function _dump(&$data, $name='...')
{
// object ?
//
if (is_object($data))
{
return self::_object($data, $name);
}
// array ?
//
if (is_array($data))
{
return self::_array($data, $name);
}
// resource ?
//
if (is_resource($data))
{
return self::_resource($data, $name);
}
// scalar ?
//
if (is_string($data))
{
return self::_string($data, $name);
}
if (is_float($data))
{
return self::_float($data, $name);
}
if (is_integer($data))
{
return self::_integer($data, $name);
}
if (is_bool($data))
{
return self::_boolean($data, $name);
}
// null ?
//
if (null === $data)
{
return self::_null($name);
}
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* Render a dump for a NULL value
*
* @param string $name
* @return string
*/
private static function _null($name)
{
?>
<li class="krumo-child">
<div class="krumo-element">
<a class="krumo-name"><?php echo $name;?></a>
(<em class="krumo-type krumo-null">NULL</em>)
</div>
</li>
<?php
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* Return the marked used to stain arrays
* and objects in order to detect recursions
*
* @return string
*/
private static function _marker()
{
static $_recursion_marker;
if (!isset($_recursion_marker))
{
$_recursion_marker = uniqid('krumo');
}
return $_recursion_marker;
}
/**
* Adds a variable to the hive of arrays and objects which
* are tracked for whether they have recursive entries
*
* @param mixed &$bee either array or object, not a scallar vale
* @return array all the bees
*/
private static function &_hive(&$bee)
{
static $_bee_hive = array();
// new bee ?
//
if (null === $bee)
{
// stain it
//
$_recursion_marker = self::_marker();
(is_object($bee))
? (empty($bee->$_recursion_marker)
? $bee->$_recursion_marker = 1
: $bee->$_recursion_marker++
)
: (empty($bee[$_recursion_marker])
? $bee[$_recursion_marker] = 1
: $bee[$_recursion_marker]++
);
$_bee_hive[0][] =& $bee; // KT: stupid static reference hack
}
// return all bees
//
return $_bee_hive[0];
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
/**
* Render a dump for the properties of an array or objeect
*
* @param mixed &$data
*/
private static function _vars(&$data)
{
$_is_object = is_object($data);