一、mac電腦phpstorm快捷鍵
command + a 全選
command + c 複製
command + v 貼上
command + z 撤消
command + k **搜尋
command + l 輸入行號跳到某一行
command + o 檢視乙個類的結構
command + / 單行注釋
command + e 列出最後開啟的檔案
ctrl + shift + / 塊注釋
shift + command + x
shift + command + r 按檔名搜尋對應檔案所在路徑
shift + command + t 按類名搜尋對應檔案所在路徑
shift + command + c 複製當前檔案所在路徑
選中左側的檔名 shift + f6(mac需要同時按住鍵) 進行檔案重新命名
二、windows下phpstorm的快捷鍵
ctrl+shift+n查詢檔案
ctrl+shift+f yftukwhm在乙個目錄裡查詢一段**(ctrl+f的公升級版)
ctr+shift+r 在乙個目錄裡查詢一段**並替換(ctrl+r的公升級版)
ctrl+alt ←/→ 返回上次編輯的位置
alt+ ←/→ 切換**檢視,標籤切換
alt+ ↑/↓ 在方法間快速移動定位
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+f12跳轉至當前檔案在磁碟上的位置
alt+down檢視下乙個方法
alt+up檢視上乙個方法
ctrl+alt+l重新格式化**
ctrl+shift+downstatement向下移動
ctrl+shift+upstatement向上移動
alt+shift+downline向下移動
alt+shift+upline向上移動
ctrl+/行注釋
ctrl+shift+/塊注釋
ctrl+shift+n開啟工程中的檔案
ctrl+b跳到變數申明處
ctrl+匹配 {}
ctrl+shift+]/[選中塊**
ctrl+x剪下行
ctrl+shift+v複製多個文字
alt+left/right標籤切換
ctrl+p顯示預設引數
ctrl+f12在當前類檔案裡快速查詢方法
phpstorm快捷鍵:
// ctrl+shift+n 查詢檔案
// ctrl+j 插入活動**提示
// ctrl+alt+t 當前位置插入環繞**
// alt+insert 生成**選單
// ctrl+q 檢視**注釋
// ctrl+d 複製當前行
// ctrl+y 刪除當前行
// shift+f6 重新命名
// ctrl+shift+u 字母大小寫轉換
// ctrl+f 查詢
// ctryftukwhml+r 替換
// f4 檢視原始碼
// ctrl+shift+i 檢視變數或方法定義源
// ctrl+g 跳轉行
// ctrl+alt+f12 跳轉至當前檔案在磁碟上的位置
// 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+shift+v 複製多個文字
// alt+left/right 標籤切換
// ctrl+p 顯示預設引數
// ctrl+f12 在當前類檔案裡快速查詢方法
本文標題: php ide phpstorm 常用快捷鍵
本文位址: /wangluo/php/124892.html
PHP IDE phpstorm 常用快捷鍵
投稿 junjie 字型 增加 減小 型別 這篇文章主要介紹了php ide phpstorm 常用快捷鍵,本文分別列出了mac系統和windows系統下的phpstorm快捷鍵,需要的朋友可以參考下 一 mac電腦phpstorm快捷鍵 command a 全選 command c 複製 comm...
常成員,常函式,常物件
知識點1.常物件中的任何型別的資料成員 無論私有還是公有 的值都不能被改變。知識點2.常物件能呼叫的 1.公有的常成員函式 2.建構函式 3.公有的靜態函式 知識點3.常物件與常成員函式只有同時存在才都有意義 知識點4.普通物件既可以呼叫常成員函式,也可以呼叫非常成員函式 知識點5.常成員函式不能更...
常物件,常成員函式,常引用
宣告顯示 const 型別說明符 物件名 常物件的資料成員值在物件的整個生存期間不能被改變,即就是,常物件必須進行初始化,而且不能被更新。宣告形式 型別說明符 函式名 參數列 const 注意 1.在函式定義部分也需要帶const關鍵字。2.乙個常物件只能呼叫它的常成員函式,是常物件唯一的對外介面方...