Current File : //etc/zpanel/panel/dryden/debug/execution.class.php
<?php

/**
 * @copyright 2014-2015 Sentora Project (http://www.sentora.org/) 
 * Sentora is a GPL fork of the ZPanel Project whose original header follows:
 *
 * Provides controller/framework execution debug tools.
 * @package zpanelx
 * @subpackage dryden -> debug
 * @version 1.0.0
 * @author Bobby Allen (ballen@bobbyallen.me)
 * @copyright ZPanel Project (http://www.zpanelcp.com/)
 * @link http://www.zpanelcp.com/
 * @license GPL (http://www.gnu.org/licenses/gpl.html)
 */
class debug_execution {

    /**
     * Displays the current script memory usage.
     * @author Bobby Allen (ballen@bobbyallen.me)
     * @return string Human readable memory usage for of the script.
     */
    static function ScriptMemoryUsage() {
        $mem_usage = memory_get_usage(false);
        if ($mem_usage < 1024) {
            $retval = $mem_usage . " bytes";
        } elseif ($mem_usage < 1048576) {
            $retval = round($mem_usage / 1024, 2) . " KB";
        } else {
            $retval = round($mem_usage / 1048576, 2) . " MB";
        }
        return $retval;
    }

    /**
     * Gets a list of all the currently loaded classes.
     * @author Bobby Allen (ballen@bobbyallen.me)
     * @return array List of the classes that are currently loaded.
     */
    static function GetLoadedClasses() {
        $classes_loaded = get_declared_classes();
        return $classes_loaded;
    }

    /**
     * Gets a list of all the SQL queries executed for this request.
     * @global db_driver $zdbh The ZPX database handle.
     * @author Bobby Allen (ballen@bobbyallen.me)
     * @return array List of all executed SQL queries for this request.
     */
    static function GetSQLQueriesExecuted() {
        global $zdbh;
        return $zdbh->getExecutedQueries();
    }

}

?>