如今PHP程序很多,修改PHP的IDE与编辑器也多, 如PhpStorm,Sublime Text,NetBeans,Zend Studio,Notepad++,Eclipse with PDT,Dreamweaver,Aptana,Vim,phpDesigner,zendstudio,aptana.
当然使用visual studio也可修改PHP代码。
这里,我将使用eclipse修改PHP代码
let's start
下载eclipse
目录
- 安装svn插件
- 安装vi支持插件
- 配置编码和换行
- 设置精典主题
- 设置自动提示延时
- 设置字体
- 设置volt模板类型
- 空格代替TAB,显示空白符
- 格式化标准为PSR-2
- 设置xdebug支持跟踪调试
自动换行可以参考 Eclipse Word Wraphttps://github.com/ahtik/eclipse-wordwrap/wikiUse http://ahtik.com/eclipse-update/ update site to install the latest version. Go to http://ahtik.com/blog/projects/eclipse-word-wrap/ for more info
安装svn
建议不要选择Contact all update sites during install to find required software
安装 Twig | Eclipse | Plugin
这个网站提供了大量适合PHP开发的插件:
除了通过marketplace安装外还可以如下
The plugin can be installed via the Update Manager using the following updatesite:http://p2-dev.pdt-extensions.org
vim-vrapper
统一配置
编码
设置精典主题
加快自动提示速度
字体
volt模板语法高亮显示(方案一:设置成php或者html)
如果安装了twig模板支持(推荐方案二:设置成Twig Template)
显示空白
空格代替tab
格式化标准为PSR-2
php调试
eclipse基本使用指导
workspace
PHP项目
PHP Include Path
除了指定外部源码目录外还可以指定项目
搜索,快速打开项目文件
- Ctrl+Shift+R
- Ctrl+h
快捷键
- 显示快捷键:Ctrl+Shift+L
- 删除行:Ctrl+D
- 开关注释:Ctrl+/
- 块注释:Ctrl+Shift+/ Ctrl+Shift+\
- 跳转到行号:Ctrl+L
- 格式化文件:Ctrl+Shift+F
- 格式化选中部分:Ctrl+I
- 补全提示:Alt+/
分割窗口
windows->editor
本地历史记录
比较 Local history
替换 Local history
文档注释
- 编写规范
- 文档工具生成文档
兼容phpstorm,netbeans,eclipse的函数内变量注释
/* @var $var type */
svn插件使用
最后谈的是使用PHPunit进行PHP项目测试,
具体略。
adiOS