标签:
不说废话,直接开始。
第一步: 安装并配置xdebug
zend_extension="xxxxx" // xdebug地址
xdebug.remote_enable = On
xdebug.remote_connect_back = 1
xdebug.remote_host= client_ip_address // 客户端ip地址
xdebug.remote_port = 9000 // 端口号,phpstorm中默认为9000,这里需要和客户端端口号对应
xdebug.idekey = PHPSTORM // 这里需要和客户端配置一致
第二步:配置phpstorm
三、设置断点 and enjoy it !
标签:
原文地址:http://www.cnblogs.com/smallrookie/p/5652012.html