如何在Mac上使用带有PHPStorm的Nginx上的Xdebug和Laravel?

时间:2017-02-01 09:55:28

标签: php laravel nginx phpstorm xdebug

有关如何使用PHPStorm设置XDebug的指南。

版本:

  • PHP 7.0
  • PHPStorm 2016.3.2
  • XDebug 2.5
  • OS X El Capitan 10.11.6

1 个答案:

答案 0 :(得分:7)

本指南仅适用于PHP7,Mac El Capitan,PHPStorm 2016.3

  1. 安装brew http://brew.sh/
  2. 安装php7 brew install php70
  3. 安装nginx

    指南 - http://learnaholic.me/2012/10/10/installing-nginx-in-mac-os-x-mountain-lion/

    配置 - https://gist.github.com/kmaxat/c07795ab88677efb843686d075fafa9e

  4. brew install php70-xdebug

  5. 在laravel的公共文件夹中创建info.php文件:

    info.php:<?php phpinfo();

  6. 编辑文件/usr/local/etc/php7.0/conf.d/ext-xdebug.ini

    zend_extension="/usr/local/opt/php70-xdebug/xdebug.so" xdebug.remote_enable = 1 xdebug.remote_connect_back=1 xdebug.remote_port = 9001 xdebug.scream=0 xdebug.show_local_vars=1 xdebug.idekey=PHPSTORM

  7. 重新启动nginx sudo nginx -s reloadbrew services restart nginx

  8. 重启php-fpm brew services restart php70

  9. 转到localhost / info.php,您应该可以看到xdebug。部分图片:

  10. List item

    1. 设置CLI解释器。 PHPStorm - &gt;设置 - &gt;语言与框架 - &gt; PHP
    2. enter image description here

      1. 点击CLI解释器旁边的“...”。如果上述步骤正确完成,您应该能够看到:
      2. enter image description here

        1. 设置服务器: 运行 - &gt;编辑配置 - &gt; ...(服务器旁边)。
        2. enter image description here

          1. 设置编辑配置 运行 - &gt;编辑配置 - &gt; + - &gt; PHP Web应用程序。选择已创建的服务器,设置名称
          2. enter image description here

            1. 在工具栏中选择已创建的服务器,然后单击“开始侦听PHP调试连接”。
            2. enter image description here

              1. 在public / index.php
              2. 设置断点

                enter image description here

                1. 在工具栏中单击“Debug'ServerName'”