Correct URL Query Value for Initiating Debugging
已回答
I am trying to initiate a debugging session from an external webhook. What is the correct query parameter I need to use at the end of the URL to initiate the debugging? Is it ?IDEKEY=PHPSTORM or ?KEY=PHPSTORM or something else? And should it be in lowercase or uppercase?
Many thanks,
Ben
请先登录再写评论。
That would be
XDEBUG_SESSION_START=session_name (see docs).You can use bookmarks instead, check this guide; also you can simply use xdebug.remote_autostart in php.ini.
Thank you so much Dmitry