jetbrains系列的
php ide界面和语法提示相当不错
phpstorm快捷键:
//shift+enter 新的一行
// ctrl+shift+n 查找文件
// ctrl+j 插入活动代码提示
// ctrl+alt+t 当前位置插入环绕代码
// alt+insert 生成代码菜单
// ctrl+q 查看代码注释
// ctrl+d 复制当前行
// ctrl+y 删除当前行
// shift+F6 重命名
// ctrl+shift+u 字母大小写转换
// ctrl+f 查找
// ctrl+r 替换
// F4 查看源码
// ctrl+shift+i 查看变量或方法定义源
// ctrl+g 跳转行
// ctrl+alt+y 刷新项目缓存Synchronize 或文件夹右键Synchronize
// ctrl+alt+F12 跳转至当前文件在磁盘上的位置
// Ctrl + Shift + F:区域查找
// alt+down 查看下一个方法
// alt+up 查看上一个方法
// ctrl+alt+l 重新格式化代码
// ctrl+shift+down statement向下移动
// ctrl+shift+up statement向上移动
// alt+shift+down line向下移动
// alt+shift+up line向上移动
// ctrl+/ 行注释
// ctrl+shift+/ 块注释
// ctrl+shift+n 打开工程中的文件
// ctrl+b 跳到变量申明处
// ctrl+[] 匹配 {}[]
// ctrl+shift+]/[ 选中块代码
// ctrl+x 剪切行
// ctrl + '-/+' : 可以折叠项目中的任何代码块
// ctrl+shift+v 复制多个文本
// alt+left/right 标签切换
// ctrl+p 显示默认参数
// ctrl+F12 在当前类文件里快速查找方法
// ctrl+shift+]/[ 选中块代码<table>....</table>
phpstrom配置xdebug(新)
1.首先配置一下xdebug的设置,因为我这里用的是wamp, 所以我的php.ini 位置在 F:\wamp\bin\apache\apache2.2.22\bin
下的php.ini
01 | [xdebug] |
02 | ;显示默认的错误信息 |
03 | xdebug.remote_enable = on |
04 | xdebug.profiler_enable = off |
05 | xdebug.profiler_enable_trigger = off |
06 | xdebug.profiler_output_name = cachegrind.out.%t.%p |
07 | xdebug.profiler_output_dir = "f:/wamp/tmp" |
08 | ;设置xdebug的端口为9001 |
09 | xdebug.remote_port = 9001 |
10 | ;设置idekey |
11 | xdebug.idekey="PHPSTORM" |
2.开始配置
如果你不想使用浏览器,想直接测试php程序的话可以用下面的这个测试