PhpStorm之xdebug安装
【摘要】 phpstudy自带xdebug其他选项菜单 —> PHP扩展及设置 —> PHP扩展 —> Xdebug设置php.ini(一定要是你php运行版本环境下的php.ini), 设置完毕务必重启服务[XDebug]xdebug.profiler_append = 0;效能监测的设置开关xdebug.profiler_enable = 1xdebug.profiler_enable_trigg...
phpstudy自带xdebug
其他选项菜单 —> PHP扩展及设置 —> PHP扩展 —> Xdebug
设置php.ini(一定要是你php运行版本环境下的php.ini), 设置完毕务必重启服务
[XDebug]
xdebug.profiler_append = 0
;效能监测的设置开关
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
;profiler_enable设置为1的时候,效能监测信息写入文件所在的目录
xdebug.profiler_output_dir="D:\phpStudy\tmp"
;设置的函数调用监测信息的输出路径
xdebug.trace_output_dir="D:\phpStudy\tmp"
;生成的效能监测文件的名字
xdebug.profiler_output_name ="cache.out.%t-%s"
;IDE与XDebug协作,端口设置不要冲突其他服务
xdebug.remote_enable = on
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9010
xdebug.idekey = phpstorm
;远程断点自动打开
xdebug.remote_autostart = on
;.dll文件的路径,ext文件下自带xdebug的dll文件
zend_extension="E:\PhpStudy\PHPTutorial\php\php-7.1.13-nts\ext\php_xdebug.dll"
phpstorm设置
File —> Settings
设置PHP环境(要与运行调试版本一直)
IDE key 设置要与php.ini 的xdebug.idekey一致
phpinfo 页面会出现xdebug版本与IDE key,表示成功
火狐浏览器安装插件
PHP代码审计入门(一)万能密码
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)