給Windows + Apache 22 + PHP 53 安裝PHP效能測試工具 xhprof

WBOY
發布: 2016-07-29 09:13:29
原創
1260 人瀏覽過

原文連結:http://blog.snsgou.com/post-816.html

1、下載XHProf

到這裡 http://dev.freshsite.pl/php-extensions/xhprof.html 下載Windows版本的XHProf,我在這裡選擇下載

XHProf 0.10.3 for PHP 5.3 vc9 和 xhprof_html

2、安裝XHProf

把壓縮包裡的 199905 .ini配置裡面加入設定(不要忘記建立對應的資料夾)

[xhprof]
extension=xhprof_0.10.3_php53_vc9.dll
; directory used by default implementation of the iXHProfRuns
; interface (namely, the XHProfRuns_Default class) for storing
; XHProf runs.
xhprof.output_dir="d:/PHP/xhprof/log"
登入後複製

3、使用XHProf

 xhprof_html.zip 解壓縮到你想測試的網站根目錄,如我放在了網站目錄的 / public/xhprof/windows 下。

測試檔案:

<?php
function bar($x)
{
	if ($x > 0)
	{
		bar($x - 1);
	}
}

function foo()
{
	for ($idx = 0; $idx < 5; $idx++)
	{
		bar($idx);
		$x = strlen("abc");
	}
}

// 启动xhprof
xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);

// 调用foo函数,也是我们要分析的函数
foo();

// 停止xhprof

$xhprof_data = xhprof_disable();

// 取得统计数据
//print_r($xhprof_data);

$os = 'windows';

$XHPROF_ROOT = dirname(__FILE__) . '/public/xhprof/' . $os;
<strong>include</strong>_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
<strong>include</strong>_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";

// 保存统计数据,生成统计ID和source名称
$xhprof_runs = new XHProfRuns_Default();
$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_foo"); // source名称是xhprof_foo

// 查看统计信息
echo "<div><a href='/public/xhprof/" . $os . "/xhprof_html/index.php?run=" . $run_id . "&source=xhprof_foo' target='_blank'>XHProf view</a></div>";
登入後複製

當點擊連結「[View Full Callgraph]」時,會報錯:

failed to execute cmd: " dot -Tpng"

failed to execute cmd: " dot -Tpng"

所以需要下載。

4、下載Graphviz

到這裡 http://www.graphviz.org/Download_windows.php 下載Windows版本的Graphviz,我這裡選擇下載 

graphviz-2.38.zip

壓解5、Y ,把Graphviz拷貝到某個目錄,如 d:/PHP/xhprof/graphviz-2.38/

6、配置Graphviz

找到上述提到網站目錄 /public/xhprof/windows/

 下的找到上述提到網站目錄 /public/xhprof/windows/

 下的找到上述提到網站目錄 /public/xhprof/windows/

 下的文件,調整如下:

<?php
/**
 * Set the absolute paths on your system
 */
define('ERROR_FILE', 'd:/PHP/xhprof/log/xhprof_dot_errfile.log');
define('TMP_DIRECTORY', 'd:/PHP/xhprof/tmp');
define('DOT_BINARY', 'd:/PHP/xhprof/graphviz-2.38/release/bin/dot.exe');
登入後複製

  重新點擊連結 [View Full Callgraph],一張期待已久的效果圖出來囉:

Apache

久的效果圖出來囉:

给Windows + <strong></strong>Apache</p> 久的效果圖出來><p>
                
                
                </p>
                    以上就介紹了給Windows + Apache 22 + PHP 53 安裝PHP效能測試工具 xhprof,包含了include方面的內容,希望對PHP教學有興趣的朋友有幫助。 <p>
                </p>
                    🎜

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板