webgrind分析文件存储在Ubuntu 14.04中的哪个位置?

时间:2016-01-18 16:24:31

标签: php ubuntu profiling webgrind

我已经设置了xdebug和webgrind,并且我已经生成了几个分析文件。这些生成的文件存储在哪里?

1 个答案:

答案 0 :(得分:0)

您可以在活动的php.ini中设置xdebug保存性能分析活动的位置 (ussually /etc/php5/apache2/php.ini)

xdebug.remote_connect_back=1
xdebug.profiler_enable = 1
xdebug.profiler_output_name = xdebug.out.%t
xdebug.profiler_output_dir = /tmp
xdebug.profiler_enable_trigger = 1

设置文件名和文件夹( xdebug.out。%t / tmp ) 保存php.ini

后别忘了重启apache
sudo service apache2 restart