phpstrom 與 xdebug 配合實現PHP單步調試

不說廢話,直接開始。php

第一步: 安裝並配置xdebugphpstorm

  1.   安裝
      能夠從官網直接下載對應php版本的xdebug,下載地址:  https://xdebug.org/download.php 
  2.   配置,典型的配置以下:

    zend_extension="xxxxx"  // xdebug地址ide

    xdebug.remote_enable = Ondebug

    xdebug.remote_connect_back = 1orm

    xdebug.remote_host= client_ip_address  // 客戶端ip地址ip

    xdebug.remote_port = 9000 // 端口號,phpstorm中默認爲9000,這裏須要和客戶端端口號對應rem

    xdebug.idekey = PHPSTORM // 這裏須要和客戶端配置一致it

第二步:配置phpstormio

  1. File-》Settings-》Languages & Frameworks -》 PHP -》 Debug



  2. 打開Phpstorm 主面板 ,按下圖所示配置debug參數







  3.  打開Phpstorm 的debug

3、設置斷點 and enjoy it !cli

相關文章
相關標籤/搜索