This article mainly introduces the Phpstrom use of Xdebug configuration method, we refer to use it
1 to http://xdebug.org/download.php download Xdebug. Be careful to find your own PHP version. or through the http://xdebug.org/wizard.php page, the phpinfo information can be copied in, point the bottom of the analysis. It will tell you which version to download, and then how to configure it. 2. Open PHP.ini Add the following statement code as follows: [XDEBUG] zend_extension = "D:program Files (x86) Php5extphp_xdebug.dll" Xdebug.remote_enable=on ; This address is the IP xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 where the IDE resides; Can be any key, which is set to Phpstorm xdebug.idekey= "Phpstorm" 3. Configure the IDE in Settings, select PHP-> Debug, fill in the Xdebug just set the port, OK. 4. Configure browser Chrome To install the Xdebug helper. Setting the key equals the key 5 set by php.ini. Debug process: At the bottom of the Phpstorm Run menu, select Start Listen PHP Debug connections turn on listening. When the browser accesses the breakpoint, the phpstorm automatically responds.