程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Zend studio文件注釋模板設置方法

Zend studio文件注釋模板設置方法

編輯:關於PHP編程

步驟:Window -> PHP -> Editor -> Templates,這裡可以設置(增、刪、改、導入等)管理你的模板。
新建文件注釋、函數注釋、代碼塊等模板的實例

新建模板,分別輸入Name、Description、Pattern

a)文件注釋

Name: 3cfile
Description: tkyouxi.com文件注釋模板

Pattern:
/**
* tkyouxi.com xx文件
* ==============================================
* 版權所有 2010-2011 http://www.tkyouxi.com.com
* ----------------------------------------------
* 這不是一個自由軟件,未經授權不許任何使用和傳播。
* ==============================================
* @date: ${date}
* @author: ${user}
* @version:
*/

b)方法注釋

Name: 3cmethod
Description: tkyouxi.com方法注釋模板
Pattern:
/**
* 函數用途描述
* @date: ${date}
* @author: ${user}
* @return:
*/

c)if格式

Name: 3cif
Description: tkyouxi.com if格式模板
Pattern:
if (${condition}) {
${cursor};
}

進入PHP文件中,輸入3cfile、3cmethod或3cif等,回車就可以調出模板內容,以便開發中編碼的規范。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved