php断点调试扩展,使用phpstorm进行PHP断点调试;xdebug.dll下载;把下载的dll拷贝到php里面的ext文件夹里(扩展dll都在这里),改名为php_xdebug.dll; 在php.ini里修改(在“; Module Settings ;”下面添加): [xdebug] zend_extension=php_xdebug.dll xdebug.remote_enable = On xdebug.remote_handler = dbgp xdebug.remote_host= localhost xdebug.remote_port = 9000 xdebug.idekey = PHPSTORM