0
A
回答
0
爲做到這一點,必須使用SPL庫PHP mentionned的所有組的數組。 特別是reflectionClass。看起來有辦法檢查課堂上所有的DocBlock。
您可以閱讀更多的瞭解:ReflectionClass::getDoccomment
的實施有一點點想法,你可以inplement這種代碼:
function getAnnotations($class)
{
$inspectedClass = new ReflectionClass($class);
$inspectedClassDoc = $inspectedClass->getDocComment();
}
相關問題
- 1. 分層註釋檢索
- 2. 檢索Java註釋屬性
- 3. 使用SchemaCrawler和MySQL5.7時,無法檢索索引的註釋
- 4. JAXB註釋檢索對象爲XML
- 5. AspectJ的 - 檢索註釋參數
- 6. 遞歸檢索線程註釋列表
- 7. JERSEY:如何使用注入註釋檢索調用IP或URI?
- 8. Intellij IDEA和mvp4g APT註釋檢查
- 9. mapkit和註釋
- 10. ByteBuddy和註釋
- 11. 注入和資源和自動註釋註釋
- 12. 搜索未註釋的行
- 13. 在mapkit中搜索註釋
- 14. 查找註釋索引MapKit
- 15. 什麼是註釋索引?
- 16. Hibernate空間索引註釋
- 17. 休眠4.3索引註釋
- 18. Demistifying EJB註釋和注入
- 19. CDI注入和@Model註釋
- 20. 彈簧注射和註釋
- 21. 在flex中檢測註釋
- 22. 檢查註釋標註點擊
- 23. @Model註釋和MVC
- 24. EasyMock和@Value註釋
- 25. 常量和註釋
- 26. 3D註釋和PdfLayer
- 27. Hibernate註釋和DTOs
- 28. 鈦 - Mapview和註釋
- 29. robotium和android註釋
- 30. JAX-WS和註釋
謝謝,我會嘗試 –
我想這atm http://www.doctrine-project.org/api/orm/2.5/class-Doctrine.ORM.Mapping.ClassMetadata.html –