PHP is slow to open the test page after opening the Xdebug extension. The breakpoint has been typed up, and Debugger also has a hint on PHPSTORM, but the page just doesn"t show
. my Xdebug configuration is as follows
`[Xdebug]
zend_extension=C:xamppphpextphp_xdebug.dll
xdebug.remote_enable = On
xdebug.remote_handler = "dbgp"
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.idekey = "PHPSTORM"
xdebug.profiler_enable=0
`
this is my screenshot
in this way, the page does not respond all the time, and then after the debugging is stopped, the content of the page comes out
.