无法通过 php 脚本连接到 xdebug(在 xampp for mac 上运行)
Posted
技术标签:
【中文标题】无法通过 php 脚本连接到 xdebug(在 xampp for mac 上运行)【英文标题】:Cannot connect to xdebug (running on xampp for mac) via php script 【发布时间】:2014-12-20 15:01:21 【问题描述】:我尝试运行以下 php 脚本,但没有任何反应:
$address = '127.0.0.1';
$port = 9000;
$sock = socket_create(AF_INET, SOCK_STREAM, 0);
socket_bind($sock, $address, $port) or die('Unable to bind');
socket_listen($sock);
$client = socket_accept($sock);
echo "connection established: $client";
socket_close($client);
socket_close($sock);
它似乎只是挂起。
【问题讨论】:
【参考方案1】:我想通了。我在 php.ini 中添加了以下内容:
xdebug.remote_enable =1
xdebug.remote_hander =dbgp
xdebug.remote_mode = req
xdebug.remote_host =127.0.0.1
xdebug.remote_port = 9000
xdebug.idekey=netbeans-xdebug
【讨论】:
以上是关于无法通过 php 脚本连接到 xdebug(在 xampp for mac 上运行)的主要内容,如果未能解决你的问题,请参考以下文章
一步一步:如何进行 Xdebug 故障排除连接到客户端 IDE