快速進行函數(shù)頭注釋如何操作?
老師在視頻的9.25分左右對新編寫的函數(shù)按了什么快捷鍵就出現(xiàn)這樣的注釋了?
/**
*過濾用戶輸入的特殊字符
* @param string $str
* @return boolean|string
*/
老師在視頻的9.25分左右對新編寫的函數(shù)按了什么快捷鍵就出現(xiàn)這樣的注釋了?
/**
*過濾用戶輸入的特殊字符
* @param string $str
* @return boolean|string
*/
2017-01-17
舉報
2017-09-06
先輸入/** 再回車
2017-01-28
行注釋:// ? ? ctrl+/
塊注釋 /* echo "hello world";*/ ? ctrl +shift+/
php基礎(chǔ)里面有講zend studio快捷鍵使用
zend studio使用快捷鍵
復(fù)制當(dāng)前行 ctrl+alt+下
刪除當(dāng)前行ctrl+d
上下行互換 alt+上/下
行注釋:// ? ? ctrl+/
塊注釋 /* echo "hello world";*/ ? ctrl +shift+/
代碼提示 alt+/
跳轉(zhuǎn)到當(dāng)前行末尾按 end
當(dāng)前文本檢索 ctrl+f
項目文本檢索 ctrl+h
代碼格式化 ctrl+shift+f
保存當(dāng)前文件 ctrl+s
關(guān)閉當(dāng)前編輯頁ctrl+w (瀏覽器和office等也通用)
快捷鍵列表 ctrl+shift+L
outline 變量、函數(shù)、對象大綱結(jié)構(gòu) ?