程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> window wamp中配置安裝xhprof步驟

window wamp中配置安裝xhprof步驟

編輯:關於PHP編程

本文章來給各位同學介紹在window wamp中配置安裝xhprof方法與具體步驟,希望些方法對各位同學會有所幫助哦。

1.下載在這裡 http://dev.freshsite.pl/php-extensions/xhprof.html 如果你下載不下來,可以給[email protected]發郵件,說明版本。

我使用的是wamp 2.2d 32位的 ,這裡羅嗦一句,既然用windows的wamp了,就不要裝64位了,畢竟都是開發環境,正式環境肯定是32位的

這裡下載兩個文件 XHProf 0.10.3 for PHP 5.3 vc9.zip xhprof_html.zip

2.安裝。 這步驟很簡單,把XHProf 0.10.3 for PHP 5.3 vc9.zip裡面的dll文件重命名為 php_xhprof.dll 放在php的ext目錄下,然後在php.ini配置裡面加入配置(不要忘記創建對應的文件夾)

 代碼如下 復制代碼

[xhprof]
extension=php_xhprof.dll
; directory used by default implementation of the iXHProfRuns
; interface (namely, the XHProfRuns_Default class) for storing
; XHProf runs.
xhprof.output_dir=”d:/wamp/logs/xhprof_log”

重啟你的wamp即可,看看phpinfo()裡面有沒有對應的文件

3.使用:

xhprof_html.zip 這個文件解壓到你想測試的網站根目錄就好了

現在網站一般使用的是框架,唯一入口這點最好了,直接在index.php裡面寫就好了,我用的是yaf框架

 

 代碼如下 復制代碼

<?php
xhprof_enable();//開始
require 'init.php';
require 'conf/db.inc.php';
$app = new Yaf_Application(BASE_PATH . "/conf/itxiangqin.ini");
Yaf_Registry::set('config', Yaf_Application::app()->getConfig());
$app->bootstrap()->run();
$xhprof_data = xhprof_disable();//結束,然後寫入文件,注意目錄
$XHPROF_ROOT = realpath(dirname(__FILE__).'/xhprof');
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";

// save raw data for this profiler run using default
// implementation of iXHProfRuns.
$xhprof_runs = new XHProfRuns_Default();

// save the run under a namespace "xhprof_foo"
$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_foo");
echo "<a href='http://www.pztai.com/xhprof/xhprof_html/?run=$run_id&source=xhprof_foo'>分析</a>";//

這裡的pztai換成你自己的域名就好了,本地就localhost分析</a>";//這裡的pztai換成你自己的域名就好了,本地就localhost
還在學習使用中,寫上幾個縮寫的

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved