虽然说echo和print教育教学故事_r是公认的最实用的调试工具,但是效率真的没有可视化的直接断点那么高。这里简单介绍如果安装及配置xdebug for vscode
一、php环境处的配置
1、编译安装
下载及编译php,因为我所在的公司php版本是5.4的,所以去xdebug官网上选了相对比较底的版本.您也可以根据你们的实际情况下载相应的xdebug版本:
wget https://xdebug.org/files/xdebug-2.4.1.tgztar -xvf xdebug-2.4.1.tgzcd xdebug-2.4.1/phpize./configuremake install
make最终结束输出:
make install最终结束输出:
2、配置php.ini文件
sit这个是我的配置。为了使得可配性更强。我将xdebug配置写到:/etc/php.d/xdebug.ini
[xdebug]zend_extension="/usr/lib64/php/modules/xdebug.so" #这里改成你在make install后的路径。xdebug.remote_enable = truexdebug.remote_host = 10.0.5.176 #改成你的vscode所以机器的ip地址#default port 9000xdebug.remote_po含有虎字的成语rt = 9000 #如果9000端口冲突了,可以换一个。不过相应的vscode配置也要相应的改变xdebug.profiler_enable = onxdebug.auto_trace = onxdebug.show_exception_trace = onxdebug.remote_autostart = onxdebug.collect_vars = onxdebug.collect_return = onxdebug.remote_handler =dbgpxdebug.max_nesting_level = 10000xdebug.trace_output_dir = "d:/code/videochat" #我这里写的是php代码所在的路径
二、配置vscode
1、使用vscode打开php工程后。安装php-debug及生成调试配置文件,如图所示,依次点击这些按钮
2、如下操作后,会出现如下选项框。选中php即可
3、选中后,会出现一个json的配置文件
修改此json文件,注意rversourceroot改成你服务器上,php所在的路径。不然即使断下来后,会出现找不到文件的异常
{ // u intellin to learn about possible attributes. //大脑训练 hover to view descriptions of existing attributes. // for more information, visit: /d/file/titlepic/ref=go&linkid=0 "version": "0.2.0", "configurations": [ { "name": "listen for xdebug", "type": "php", "request": "launch", "port": 9000, "stoponentry":fal, "localsourceroot": "${workspaceroot}", "rversourceroot": "/work/videochat" }, { "name": "launch currently open script", "type": "php", "request": "launch", "program": "${file}", "cwd": "${filedirname}", "port": 9000 } ]}
最后,在vscode里断点好后。按f5,等待请求,即可享受图形化的调试乐趣
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。
本文发布于:2023-04-06 16:10:24,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/564ebe62ab271a2a5989cf0a9564d4f3.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:详解关于php的xdebug配置(编辑器vscode).doc
本文 PDF 下载地址:详解关于php的xdebug配置(编辑器vscode).pdf
留言与评论(共有 0 条评论) |