コード例 #1
0
ファイル: table.php プロジェクト: ciklon-z/framework
        return;
    }
    ?>

    <table class="debug-table">
        <?php 
    foreach ($value as $key => $var) {
        ?>

            <tr>
                <td><span class="debug-type type-object"><?php 
        echo $key;
        ?>
</span></td>
                <td><?php 
        echo Debugger::parseType($var);
        ?>
</td>
                <td><?php 
        echo HtmlDumper::renderTemplate('table', ['value' => $var]);
        ?>
</td>
            </tr>

        <?php 
    }
    // Display class methods
    if (is_object($value)) {
        $methods = get_class_methods($value);
        sort($methods);
        foreach ($methods as $method) {