美文网首页
phpstorm+xdebug+chrome+Xdebug he

phpstorm+xdebug+chrome+Xdebug he

作者: yaokui | 来源:发表于2016-02-19 16:02 被阅读1498次

    1.安装&配置xdebug

    安装扩展过程就略了,简单贴一下我的xdebug配置参数,在php.ini中:

    [xdebug]
    zend_extension=xdebug.so
    xdebug.remote_enable =1
    xdebug.remote_host = "192.168.56.1"
    xdebug.remote_mode = "req"
    #xdebug.remote_handler="dbgp"
    xdebug.idekey="PHPSTORM"
    
    xdebug.remote_connect_back = 1
    xdebug.scream=0 
    xdebug.cli_color=1
    xdebug.show_local_vars=1
    
    • 注意
      xdebug.remote_host, xdebug.idekey="PHPSTORM"

      xdebug.remote_port
      两个参数,这与phpstorm有关,留个心。

    设置phpstorm

    • 找到Languager & Frameworks > PHP > Debug > DBGp proxy
      设置IDE key: PHPSTORM
      Host: 192.168.33.10//服务器的ip
      Port: 9000//默认9000

    配置server

    添加配置,选择configuration->server里添加单个域名,添加远程/本地对应的目录

    EF76930C-AEB5-4931-BBB2-B1DD94681B2C.png

    相关文章

      网友评论

          本文标题:phpstorm+xdebug+chrome+Xdebug he

          本文链接:https://www.haomeiwen.com/subject/lehvkttx.html