码迷,mamicode.com
首页 > Web开发 > 详细

PHP开发环境搭建

时间:2019-10-09 19:52:34      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:color   pos   文件的   选择   hand   文件中   dea   serve   tput   

0.软件准备

软件介质:idea 2018版本、Wampserver 64位版本

1.给idea安装php插件

依次进入File-->Settings-->Plugins-->Browse repositories下,搜索php插件,并安装之;装完插件需要重启idea;

2.给idea做php配置

1)依次进入File-->Settings-->Languages & Frameworks-->PHP下,设置PHP language level、CLI interpreter(两处设置版本需要对应起来);

2)在Debug目录下,有Xdebug属性,设置其Debug port(ps:该端口需要和Wampserver中php版本的php.ini文件的端口配置一致);

3)在Debug目录下,有DBGp Proxy属性,分别设置IDE key(此key需要和php.ini文件中的key配置相同)、Host(同前)、Port(同前);

4)在步骤(1)的目录下,有servers属性,添加一个server,Name随意、host(同前)、port(填写服务上默认端口,若未修改,默认是80)、Debugger(选择Xdebug)

3.给Wampserver做配置

1)Wampserver中集成了多个版本的php,选择步骤2->(1)设置的版本进行配置

2)配置php.ini,其中idekey、remote_port与步骤2->(3)的ide key、port配置一致

1 [xdebug]
2 zend_extension ="D:/wamp64/bin/php/php5.6.40/zend_ext/php_xdebug-2.5.5-5.6-vc11-x86_64.dll"
3 xdebug.remote_enable=1
4 xdebug.profiler_output_name = cachegrind.out.%t.%p
5 xdebug.profiler_output_dir ="D:/wamp64/tmp"
6 xdebug.idekey="phpdebug"
7 xdebug.remote_port=9001
8 xdebug.remote_handler="dbgp"

4.启动Wampserver

5.启动idea的监听

PHP开发环境搭建

标签:color   pos   文件的   选择   hand   文件中   dea   serve   tput   

原文地址:https://www.cnblogs.com/wslio/p/11643066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!