Phpstorm Chinese Course
- |
- Browse:15972
- |
- Updated: 2014-06-10 21:14
Step through Reading
The Phpstorm is a powerful IDE that is ideal for PHP developers and front-end engineers. Available in: Smart html/css/javascript/php editing, code quality analysis, version control integration (SVN, GIT), debugging and testing. In addition, it is a cross-platform. Can be used under both Windows and MacOS. Phpstorm-makes development smarter, not more difficult.
steps to readTools/Materials
Method/Step
- 1
First Landing Phpstorm official website http://www.jetbrains.com/phpstorm/. According to the system environment (WINDOWS/MAC), download the corresponding version of the 30-day use version.
- 2
After the installation is complete, enter the following license to hack:
User Name
Embrace
License Key
===== LICENSE BEGIN =====
43136-12042010
00002usvson704l "Dile1pvx3y4" B3
49AU6OSDJRSJE8NMOQH "8HTDJHIUUh
gd1bebyc5u "6oxdbvsalb4eb10pw8"
===== LICENSE END =====
Ok. 199 Dollars of software!
END
Common skills
- 1
locally modified record : Right-click on the project name and tap Local History | Show history. You can see each historical version of the project file; alt+shift+c, you can see the recent changes to the project. This is the version integration feature.
- 2
Recent edits: Ctrl+e. You can quickly open the file you recently edited.
- 3
Code demarcation: Open File | Setting | Editor, select Show Method separators below appearance. It will use your code as a method, with a gray wireframe for intelligent segmentation. You can also use: alt+↑ or ↓ to jump between methods.
- 4
code entry hint: The IDE is based on the system function library, the method name associated with the project file, the current file contents, and the internal file path (using CTRL + SPACEBAR completion) for code hinting.
- 5
pasteboard: use Ctrl+shift+v. You can select the most recent content you want to paste.
- 6
Skin Switch : Ctrl + Anti-quote, you can quickly switch skin.
- 7
Quick View Style: Right-click on the HTML tab and select Show applied styles for tag. You can quickly see the style applied to the label. Similar to the firebug used by front-end development engineers.
- 8
Find and Replace: text lookup and substitution in the current file using Ctrl+f and ctrl+r;
END
Precautions
Phpstorm Chinese Course