[日常] windows下使用vscode配合xebug调试php脚本
2021-01-26 06:13
标签:需要 使用 process vsc sock 新版 最新版 start 进程间通信 windows下使用vscode配合xebug调试php脚本 要下载有php_xebug.dll扩展的版本,最新版可能没有这个扩展,php7.3应该是有的,php7.3.4好像没有 调试cli脚本的php也需要配置下面这个,如果没有的话也是无法调试的 stream_socket_pair — 创建一对完全一样的网络套接字连接流 [日常] windows下使用vscode配合xebug调试php脚本 标签:需要 使用 process vsc sock 新版 最新版 start 进程间通信 原文地址:https://www.cnblogs.com/taoshihan/p/11990855.html
默认是不加载这个扩展的,需要在php.ini中加载上这个扩展,一定得注意是zend_extension
zend_extension=xdebug
[XDebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
这个函数通常会被用在进程间通信(Inter-Process Communication)
文章标题:[日常] windows下使用vscode配合xebug调试php脚本
文章链接:http://soscw.com/index.php/essay/47145.html