我知道PHP ReflectionClass從PHP腳本獲取文檔評論。現在我遇到了數百個不使用類但只有簡單的公共函數的舊PHP腳本。如果我是對的,ReflectionClass不能在這裏使用?我的目標是提取每個文檔評論。例如。 test1.php
包含以下行:如何從不使用類的PHP腳本中提取文檔評論?
<?php
/**
* some main comments here
*/
...some php lines here...
/**
* function comment
* Blah blah
*/
function foo()
{
...some php lines here...
}
...and more functions below each with comments
?>
所以我期望的輸出中會是一個表,如:
--------------------------------------------------
| Filename | FUNCTION | Comment |
--------------------------------------------------
| test1.php | | some main comments here |
| test1.php | foo() | function comment |
| | | Blah Blah |
你有沒有嘗試一些文檔生成器? http://phpdox.de/或https://phpdoc.org/ – muescha
Muescha,謝謝。還沒。如果你能進一步提示我,我將不勝感激:) – tatskie