首页 > 代码库 > XHPROF相关内容
XHPROF相关内容
定义入口文件
define(‘XHPROF_OPEN‘, 0); define(‘XHPROF_ROOT‘, ‘/home/www/xhprof/‘); // 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false define(‘APP_DEBUG‘,true); // 定义应用目录 define(‘APP_PATH‘,‘../app/‘); define(‘LOG_PATH‘,APP_PATH.‘Runtime/Logs/‘); if(defined(‘XHPROF_OPEN‘) && XHPROF_OPEN) { require (‘./xhprof.php‘); }
加载xhprof.php
<?php if (!defined(‘XHPROF_OPEN‘)) define(‘XHPROF_OPEN‘, 0); class Xhprof { private static $st = 0; /** * [start description] * @return [type] [description] */ public static function start() { if (!function_exists(‘xhprof_enable‘)) { exit("xhprof_enable not exists!"); } if (!is_dir(XHPROF_ROOT)) { exit(XHPROF_ROOT . " not exists!"); } //xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); xhprof_enable(XHPROF_FLAGS_NO_BUILTINS |XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY); self::$st = microtime(true); register_shutdown_function(array(__CLASS__, ‘end‘)); //php进程关闭时自动执行的方法 } /** * [end description] * @return [type] [description] */ public static function end() { $et = microtime(true); $data = xhprof_disable(); include_once XHPROF_ROOT."xhprof_lib/utils/xhprof_lib.php"; include_once XHPROF_ROOT."xhprof_lib/utils/xhprof_runs.php"; $runs = new XHProfRuns_Default(); $runId = $runs->save_run($data, "hx"); $log = XHPROF_ROOT . ‘xhprof_html/logs/‘.date(‘YmdHis‘).‘.html‘; $cost = $et - self::$st; $host = $_SERVER[‘HTTP_HOST‘]; $title = $_SERVER[‘REQUEST_URI‘]; $content = ‘Time: ‘.date(‘H:i:s‘)."\tCost: {$cost}\t\tUri({$host}): <a href=http://www.mamicode.com/‘/index.php?run={$runId}&source=hx‘ target=‘_blank‘>{$title}</a><br/>"; file_put_contents($log, $content, FILE_APPEND); } } if(XHPROF_OPEN) Xhprof::start();
XHPROF_OPEN 调试为1就可用
XHPROF相关内容
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。