Ubuntu 14.04 中的 webgrind 分析文件存储在哪里?

Where are webgrind profiling files stored in Ubuntu 14.04?

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

您可以设置 xdebug 保存分析的位置 activity 在您激活的 php.ini (通常 /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) 保存后不要忘记重启apache php.ini

sudo service apache2 restart