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

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

报告相同问题?

悬赏问题

  • ¥50 易语言把MYSQL数据库中的数据添加至组合框
  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况