Home > Article > Backend Development > phpstorm shortcut keys
Ctrl + Shift + Enter Add completion identifier
Ctrl + P displays parameter information
Ctrl + Q quickly find function documentation
Ctrl + mouse quickly jumps to the source of the current mouse code
Alt + Insert quickly add magic methods
Ctrl + O select and override a method of the current class
Ctrl + I implement a magic method
Ctrl + Alt + T The structure that needs to be looped
Ctrl + / Turn on/off comments on the current line
Ctrl + Shift + / Turn on/off comments for the current block
Ctrl + W incrementally selects the current block
Ctrl + Shift + W is the opposite of ctrl+w
Ctrl + Alt + L format selected code block
Ctrl + Alt + I automatically indent code
Tab / Shift + Tab add / reduce indent
Ctrl + X or Shift + Delete Cut current line or selected block to clipboard
Ctrl + C or Ctrl + Insert Copy current line or selected block to clipboard
Ctrl + V or Shift + Insert Paste from clipboard
Ctrl + Shift + V Paste from recent buffers…
Ctrl + D Duplicate current line or selected block
Ctrl + Y delete current line
Ctrl + Shift + J Smart line join (HTML and JavaScript only)
Ctrl + Enter Smart line split (HTML and JavaScript only)
Shift + Enter to open a new line
Ctrl + Shift + U select upper/lower case block code
Ctrl + Shift + ] / [ Incrementally select the block structure identifier code segment
Ctrl + Delete delete a word to the end
Ctrl + Backspace Delete a word to the beginning
Ctrl + NumPad+/- Collapse code snippet
Ctrl + Shift + NumPad+ Collapse all
Ctrl + Shift + NumPad- Open all folds
Ctrl + F4 Close the current tab
Ctrl + N Find a class
Ctrl + Shift + N Find a file
Ctrl + Alt + Shift + N
The above introduces the phpstorm shortcut keys, including related content. I hope it will be helpful to friends who are interested in PHP tutorials.