PHPStorm常用技巧

1、利用phpstorm+xdebug来调试代码:

https://confluence.jetbrains.com/display/PhpStorm/Zero-configuration+Web+Application+Debugging+with+Xdebug+and+PhpStorm

2、替换文本:

快捷键: CTRL+R 

可正则替换,可大小写转换

https://www.jetbrains.com/help/phpstorm/2016.3/finding-and-replacing-text-in-file-using-regular-expressions.html

3、添加行:SHIFT+ENTER

删除行: CTRL+Y

https://www.jetbrains.com/help/phpstorm/2016.3/adding-deleting-and-moving-code-elements.html

4、递归折叠代码:

https://www.jetbrains.com/help/phpstorm/2016.3/code-folding.html#folding_basics

5、格式化代码:

https://www.jetbrains.com/help/phpstorm/2016.3/reformatting-source-code.html

6、多行合成一行: CTRL+SHIFT+J

https://www.jetbrains.com/help/phpstorm/2016.3/joining-lines-and-literals.html

7、展开类文件的结构体:ATL+7

https://www.jetbrains.com/help/phpstorm/2016.3/manipulating-the-tool-windows.html

8、设置工具栏显示的内容:

https://www.jetbrains.com/help/phpstorm/2016.3/viewing-modes.html

9、搜索类 : CTRL+N

https://www.jetbrains.com/help/phpstorm/2016.3/navigating-to-class-file-or-symbol-by-name.html

10、查看文件修改历史:

https://www.jetbrains.com/help/phpstorm/2016.3/viewing-local-history-of-source-code.html


11、注释

CTRL+/


猜你喜欢

转载自blog.csdn.net/kexiaoling/article/details/56495374