如何在wamp服务器上安装PECL APD?

时间:2013-05-03 12:53:09

标签: php pecl

如何在wamp服务器上安装PECL APD,以便我可以分析我的PHP脚本?

1 个答案:

答案 0 :(得分:1)

在您的INI文件中,添加以下行:

zend_extension = /absolute/path/to/apd.so
apd.dumpdir = /absolute/path/to/trace/directory
apd.statement_tracing = 0

this link下载。

根据您的PHP构建,zend_extension指令可以是以下之一:

zend_extension              (non ZTS, non debug build)
zend_extension_ts           (    ZTS, non debug build)
zend_extension_debug        (non ZTS,     debug build)
zend_extension_debug_ts     (    ZTS,     debug build)

然后重新启动服务器。