PhpStorm crack version and tutorial

This article is quoted from the Internet and is only for my own learning and use. Thanks for the sharing of netizens

PhpStorm

write picture description here 
PhpStorm  is a commercial PHP integrated development tool developed by JetBrains, designed to improve user efficiency, deeply understand user coding, provide intelligent code completion, fast navigation and instant error checking.

advantage:

1、跨平台。

2、对PHP支持refactor功能。

3、自动生成phpdoc的注释,非常方便进行大型编程。

4、内置支持Zencode。

5、生成类的继承关系图,如果有一个类,多次继承之后,可以通过这个功能查看他所有的父级关系。

6、支持代码重构,方便修改代码。

7、拥有本地历史记录功能(local history功能)。

8、方便的部署,可以直接将代码直接upload到服务器。

Cracked version installation tutorial

Strong, strongly do not recommend sinicization! ! !

You can go directly to the PhpStorm official website to download the free trial version, but we won't say too much here. Directly teach you how to install the cracked version. 
1. At present, this cracking method only works on the 2017.1.4 version and the previous version, so you need to download the previous version. enough to use. Of course, you can also download the latest version to find the crack method yourself or buy it from Taobao. 
Click to download: PhpStorm-2017.1.4.exe 
Password: vncr 
2. After downloading and installing, open: F:\PhpStorm 2017.1.4\bin directory (the installation location may be different~) 
There are two files below: phpstorm.exe. vmoptions, phpstorm64.exe.vmoptions 
open two files and add the following codes at the end respectively:

-javaagent:F:\PhpStorm 2017.1.4\lib\JetbrainsCrack-2.6.2.jar

Click to download: JetbrainsCrack-2.6.2.jar 
Password: c4d4 
3. Now you can click to run phpstorm, and there will be a box that requires you to fill in a similar key code, copy the following code into it.

ThisCrackLicenseId-{??
"licenseId":"ThisCrackLicenseId",??
"licenseeName":"idea",??
"assigneeName":"",??
"assigneeEmail":"[email protected]",??
"licenseRestriction":"For?This?Crack,?Only?Test!?Please?support?genuine!!!",??
"checkConcurrentUse":false,??
"products":[??
{"code":"II","paidUpTo":"2099-12-31"},??
{"code":"DM","paidUpTo":"2099-12-31"},??
{"code":"AC","paidUpTo":"2099-12-31"},??
{"code":"RS0","paidUpTo":"2099-12-31"},??
{"code":"WS","paidUpTo":"2099-12-31"},??
{"code":"DPN","paidUpTo":"2099-12-31"},??
{"code":"RC","paidUpTo":"2099-12-31"},??
{"code":"PS","paidUpTo":"2099-12-31"},??
{"code":"DC","paidUpTo":"2099-12-31"},??
{"code":"RM","paidUpTo":"2099-12-31"},??
{"code":"CL","paidUpTo":"2099-12-31"},??
{"code":"PC","paidUpTo":"2099-12-31"}??
],??
"hash":"2911276/0",??
"gracePeriodDays":7,??
"autoProlongated":false}??

  

OK, a PhpStorm editor due in 2099 was born~~~

PhpStorm common shortcut keys and configuration

1. Configuration

Set the code and font style: File->Settings->Editor->Colors&Fonts->Font
Install plugins (eg: tp, laravel, yii...): File->Settings->Plugins
Set automatic line wrapping: File->Settings->Editor->General->Check "Use soft wrap in editor"
Set line numbers: File->Settings->Editor->General->Appearance->Check "show line numbers"
Finally, remember to click on the application, and other configurations that need to be configured can be Baidu.

  

 

2. Shortcuts

查询快捷键
CTRL+N   查找类
CTRL+SHIFT+N  查找文件,打开工程中的文件(类似于eclipse中的ctrl+shift+R),目的是打开当前工程下任意目录的文件
CTRL+SHIFT+ALT+N 查 找类中的方法或变量(JS)
CIRL+B   找变量的来源,跳到变量申明处
CTRL+ALT+B  找所有的子类
CTRL+SHIFT+B  找变量的 类
CTRL+G   定位行,跳转行
CTRL+F   在当前窗口查找文本
CTRL+SHIFT+F  在指定路径查找文本
CTRL+R   当前窗口替换文本
CTRL+SHIFT+R  在指定路径替换文本
ALT+SHIFT+C  查找修改的文件,最近变更历史

自动代码
ALT+回车  导入包,自动修正
CTRL+ALT+L  格式化代码
CTRL+ALT+I  自动缩进
CTRL+ALT+O  优化导入的类和包
CTRL+E  最近更改的文件/代码
CTRL+SHIFT+SPACE 切换窗口
CTRL+SPACE空格  代码自动完成,代码提示,一般与输入法冲突
CTRL+ALT+SPACE  类 名或接口名提示(与系统冲突)
CTRL+P   方法参数提示,显示默认参数
CTRL+J   自动代码提示,自动补全
CTRL+ALT+T  把选中的代码放在 TRY{} IF{} ELSE{} 里
ALT+INSERT  生成代码(如GET,SET方法,构造函数等)

复制快捷方式
F5   复制文件/文件夹
CTRL+C   复制
CTRL+V   粘贴
CTRL+X   剪 切,删除行
CTRL+D   复制行
Ctrl + Y    删除行插入符号
CTRL+SHIFT+V  可以复制多个文本 

其他快捷方式
CTRL+Z        倒退(代码后悔)
CTRL+SHIFT+Z  向前
CTRL+H        显 示类结构图
Ctrl +F12      文件结构弹出
Ctrl+Shift+H  方法的层次结构
Ctrl+Alt+H    呼叫层次
CTRL+Q   显示代码注释
CTRL+W   选中代码,连续按会 有其他效果
Ctrl+Shift+W   减少当前选择到以前的状态
CTRL+B   转到声明,快速打开光标处的类或方法说明注释(CTRL + 鼠标单击 也可以)
CTRL+O   魔术方法
CTRL+/   注释//取消注释  
CTRL+SHIFT+/  注释/*...*/
CTRL+ []   光标移动到 {}[]开头或结尾位置
CTRL+SHIFT+[]    选中块代码,可以快速复制
ctrl + '-/+': 可以折叠项目中的任何代码块,包括htm中的任意nodetype=3的元素,function,或对象直接量等等。它不是选中折叠,而是自动识别折叠。

调试
F8步过
F7步入
Shift + F7智能进入
Shift + F8步骤
ALT + F9运行到光标
Alt + F8计算表达式
F9恢复程序
Ctrl + F8切换断点
Ctrl + Shift + F8查看断点

Search for other shortcut keys that are used but not written in this article.

Use with Git

We know that when we usually use git as project version management control, 
1. Directly use commands to download, update, upload, etc. directly in the command window 
2. Use interface tools for interface operations. 
Now with PhpStorm, you can directly use the editor to do, download, upload, update, merge, etc., very convenient. 
I give an illustration, there is a convenient button in the upper right corner of the editor. 
Note: Be optimistic about branches when operating 
write picture description here

To reiterate again: strongly, strongly do not recommend sinicization! ! !

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325854791&siteId=291194637