我想要提取方法的意見,採取以下方法,例如:獲取PHP的方法評價
/**
* Returns the regex to extract all inputs from a file.
* @param string The class name to search for.
* @return string The regex.
*/
public function method($param)
{
//...
}
結果應該是
Returns the regex to extract all inputs from a file.
@param string The class name to search for.
@return string The regex.
我找到的方法是使用一個函數像file_get_content到獲取文件內容 - >過濾我想要的方法 - >取得評論使用正則表達式
它似乎有點複雜,有沒有任何方便的方法來歸檔呢?
感謝,正是我想:) – limboy 2010-03-11 08:27:57
深入瞭解後,這不是我所需要的。 getDocComment只是獲取類的評論,而不是方法。所以我寫了一個小腳本來做這個http://gist.github.com/329113 – limboy 2010-03-11 13:14:21