ini xdebug ubuntu 14.04 config for php.ini

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini xdebug ubuntu 14.04 config for php.ini相关的知识,希望对你有一定的参考价值。

[xdebug]

xdebug.remote_connect_back=1
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_log="/tmp/xdebug.log"

zend_extension=/usr/lib/php5/20121212/xdebug.so

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

【中文标题】Ubuntu 14.04 中的 webgrind 分析文件存储在哪里?【英文标题】:Where are webgrind profiling files stored in Ubuntu 14.04? 【发布时间】:2016-01-18 16:24:31 【问题描述】:

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

【问题讨论】:

【参考方案1】:

您可以设置 xdebug 在您活动的 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) 保存php.ini后别忘了重启apache

sudo service apache2 restart

【讨论】:

以上是关于ini xdebug ubuntu 14.04 config for php.ini的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu中PHP xdebug 断点调试

Ubuntu-16.04安装Xdebug-2.2.5及相关介绍

phpstorm配置xdebug进行远程调试(ubuntu)

如何在ubuntu16.04 上搭建 phpstorm + xdebug 调试

XAMPP 中的 php.ini 中缺少 XDebug 配置

设置调试工具XDebug PHPStorm IDE