[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
lib
/
pqp
/
classes
/
[
Home
]
File: Console.php
<?php /* - - - - - - - - - - - - - - - - - - - - - Title : PHP Quick Profiler Console Class Author : Created by Ryan Campbell URL : http://particletree.com/features/php-quick-profiler/ Last Updated : April 22, 2009 Description : This class serves as a wrapper around a global php variable, debugger_logs, that we have created. - - - - - - - - - - - - - - - - - - - - - */ class Console { // constructor to initialize log counts function init() { $GLOBALS['debugger_logs']['logCount'] = 0; $GLOBALS['debugger_logs']['memoryCount'] = 0; $GLOBALS['debugger_logs']['errorCount'] = 0; $GLOBALS['debugger_logs']['speedCount'] = 0; } /*----------------------------------- LOG A VARIABLE TO CONSOLE ------------------------------------*/ function log($data) { $logItem = array( "data" => $data, "type" => 'log' ); $GLOBALS['debugger_logs']['console'][] = $logItem; $GLOBALS['debugger_logs']['logCount'] += 1; } /*--------------------------------------------------- LOG MEMORY USAGE OF VARIABLE OR ENTIRE SCRIPT -----------------------------------------------------*/ function logMemory($object = false, $name = 'PHP') { if (function_exists('memory_get_usage')) { $memory = memory_get_usage(); if($object) $memory = strlen(serialize($object)); $logItem = array( "data" => $memory, "type" => 'memory', "name" => $name, "dataType" => gettype($object) ); $GLOBALS['debugger_logs']['console'][] = $logItem; $GLOBALS['debugger_logs']['memoryCount'] += 1; } } /*----------------------------------- LOG A PHP EXCEPTION OBJECT ------------------------------------*/ function logError($exception, $message) { $logItem = array( "data" => $message, "type" => 'error', "file" => $exception->getFile(), "line" => $exception->getLine() ); $GLOBALS['debugger_logs']['console'][] = $logItem; $GLOBALS['debugger_logs']['errorCount'] += 1; } /*------------------------------------ POINT IN TIME SPEED SNAPSHOT -------------------------------------*/ function logSpeed($name = 'Point in Time') { $logItem = array( "data" => PhpQuickProfiler::getMicroTime(), "type" => 'speed', "name" => $name ); $GLOBALS['debugger_logs']['console'][] = $logItem; $GLOBALS['debugger_logs']['speedCount'] += 1; } /*----------------------------------- SET DEFAULTS & RETURN LOGS ------------------------------------*/ function getLogs() { if(!$GLOBALS['debugger_logs']['memoryCount']) $GLOBALS['debugger_logs']['memoryCount'] = 0; if(!$GLOBALS['debugger_logs']['logCount']) $GLOBALS['debugger_logs']['logCount'] = 0; if(!$GLOBALS['debugger_logs']['speedCount']) $GLOBALS['debugger_logs']['speedCount'] = 0; if(!$GLOBALS['debugger_logs']['errorCount']) $GLOBALS['debugger_logs']['errorCount'] = 0; return $GLOBALS['debugger_logs']; } } ?>