美文网首页
phpstorm+xdebug 断点环境搭建

phpstorm+xdebug 断点环境搭建

作者: Rohn | 来源:发表于2016-09-09 20:03 被阅读21次

    PHP 安装 xdebug 扩展

    php.ini 配置
    [xdebug] zend_extension=/etc/php/extensions/xdebug.so #按照自己环境设置 xdebug.remote_enable = On xdebug.remote_handler = "dbgp" xdebug.remote_host = "localhost" xdebug.remote_port = 9010 #如果端口被占用,自行更换 xdebug.idekey = PHPSTROM

    设置好后重启php-fpm,可以在phpinfo()中查看到如下信息:


    xdebug in phpinfo

    设置 PHPSTORM

    打开phpStorm


    Servers Debug port DBGp Proxy Edit Configurations add a web application

    打断点, 浏览器访问就ok了。

    相关文章

      网友评论

          本文标题:phpstorm+xdebug 断点环境搭建

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