dqcuq4138 2016-08-09 23:45
浏览 56
已采纳

使用Vagrant时在Atom中调试PHP

My PHP dev environment is running on a VirtualBox VM and is provisioned via vagrant. How can I use php-debug in Atom on my host machine to debug PHP scripts running on one of my VMs?

  • 写回答

1条回答 默认 最新

  • duanhangjian8149 2016-08-09 23:45
    关注

    Configure xdebug:

    Open your php.ini file on your VM and look for the xdebug settings and make sure that you have the following values:

    xdebug.remote_autostart=1
    xdebug.remote_connect_back=0
    xdebug.remote_mode=req
    xdebug.remote_log=/tmp/xdebug.log
    xdebug.remote_host=10.0.2.2
    xdebug.remote_port=9999
    

    Note: you may have multiple php.ini files, e.g. one for cli, fpm, etc… If you do, you’ll need to make sure that you have the xdebug settings above for all environments where you want to use the debugger, e.g. I had to modify /etc/php5/cli/php.ini to use the debugger on the command line and /etc/php5/fpm/php.ini to use the debugger while running PHP scripts with apache.

    Restart your web server or any other PHP related services, e.g.

    $ sudo service apache2 restart
    $ sudo service php5-fpm restart
    

    Install the php-debug package in Atom:

    Go to Atom -> Preferences -> Install, search for php-debug and install the package

    Configure php-debug in Atom:

    • Atom -> Preferences -> Packages, search for php-debug and click Settings

    • Set the PathMaps in the form remote;local. The PathMaps translate the guest/remote path to the local/host path. Let’s assume that you are debugging foo.php and that it can be found on your VM at /var/www/mysite/foo.php and on your host box at /Users/someuser/Documents/vagrant-mysite/foo.php. Your PathMaps config would then be /var/www/mysite;/Users/someuser/Documents/vagrant-mysite.

    • Server Port: 9999

    Start debugging:

    • Open your target source file in Atom, e.g. /Users/someuser/Documents/vagrant-mysite/foo.php

    • In the bottom left corner of your Atom screen, click the “PHP Debug” button

    • Set a breakpoint by clicking immediately left of your target line of code

    • Visit foo in the browser, e.g. http://example.com/foo.php and this should cause the code to pause in Atom and you should be able to continue debugging

    • If you configured the php.ini file for your PHP command line settings, you should also be able to debug just by running the script on the guest machine, e.g. php /var/www/mysite/foo.php

    enter image description here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵