コード例 #1
0
ファイル: table.php プロジェクト: ciklon-z/framework
</td>
            </tr>

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

            <tr>
                <td><span class="debug-type type-function"><?php 
            echo $method;
            ?>
</span></td>
                <td>method</td>
                <td></td>
            </tr>

        <?php 
        }
    }
    ?>
    </table>

<?php 
} else {
    echo Debugger::parseValue($value, true);
}