PHPStorm + XDebug Setup Walkthrough

前端 未结 6 650
渐次进展
渐次进展 2020-11-30 19:58

Up until recently, I\'ve been writing code in PHP (via Notepad++) and debugging by checking the logs in IIS (gotta love that web-platform installer); I\'ve since decided to

6条回答
  •  伪装坚强ぢ
    2020-11-30 20:41

    If you don't need remote debug, you can easily debug your project.

    First check your php.ini settings.

    Be sure that your xdebug dll exists and the settings are on.

    xdebug.remote_enable = on
    xdebug.profiler_enable = on
    xdebug.profiler_enable_trigger = on
    xdebug.profiler_output_name = cachegrind.out.%t.%p
    xdebug.profiler_output_dir = "c:/wamp/tmp"
    xdebug.show_local_vars=0
    

    Then go to Run menu in top navbar. Then select edit configurations and add new configuration ( do not change your default settings for another project )

    Click add new item button.

    After adding new php web application

    If you do not have any server ( generally points the localhost with 80 port on windows or linux ) click the button shown as below.

    Add a new server with xdebug.

    Then click ok and check your configuration

    Finally, you will see the configuration at the right side of ide.

    Click RUN or DEBUG button.

提交回复
热议问题