mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-27 14:33:23 +00:00
25 lines
845 B
PHP
Executable File
25 lines
845 B
PHP
Executable File
|
|
<a href="javascript:DebugPanel_Toggle('<?= $link?>')"><?= $head?> <span>(<?= count($arr)?>)</span></a>
|
|
|
|
<div id="<?= $link?>" style="display: none">
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<th>#</th>
|
|
<th>key</th>
|
|
<th>value</th>
|
|
</tr>
|
|
<?php if (count($arr)):?>
|
|
<?php $i = 0; foreach ($arr as $k => $v):?>
|
|
<tr>
|
|
<td class="num"><?= ++$i?></td>
|
|
<td><?= $k?></td>
|
|
<td><?= VarDump($v)?></td>
|
|
</tr>
|
|
<?php endforeach?>
|
|
<?php else:?>
|
|
<tr>
|
|
<td colspan="3" class="center">Empty</td>
|
|
</tr>
|
|
<?php endif?>
|
|
</table>
|
|
</div>
|