ReflectionClass::getDocComment() - php 反射机制
ReflectionClass::getDocComment()
(PHP 5, PHP 7)
获取文档注释
说明
publicReflectionClass::getDocComment(void): string从一个类中获取文档注释。
Warning本函数还未编写文档,仅有参数列表。
参数
此函数没有参数。
返回值
如果存在则返回文档注释,否则返回FALSE
。
范例
Example #1ReflectionClass::getDocComment()例子
以上例程会输出:
string(55) "/** * A test class * * @param foo bar * @return baz */"
参见
- ReflectionClass::getName() 获取类名
According to what I can find in the PHP (5.3.2) source code, getDocComment will return the doc comment as the parser found it. The doc comment (T_DOC_COMMENT) must begin with a /** - that's two asterisks, not one. The comment continues until the first */. A normal multi-line comment /*...*/ (T_COMMENT) does not count as a doc comment. The doc comment itself includes those five characters, so will get you what's inside. A call to trim() after is recommended.
You can also get the docblock definitions for the defined methods of a class as such:
If you're using a bytecode cache like eAccelerator this method will return FALSE even if there is a properly formatted Docblock. It looks like the information required by this method gets stripped out by the bytecode cache.
This code can help you get the contents of a docBlock in array format beginning with the @symbol and ignoring the (*) asterists. class Home { /** *This method loads the homepage *@param int $id The user id *@throws \Exception If the user id doesn't exist *@return void */ public function index( $id) { #...your code here } } $object = new Home(); //get the comment string $comment_string= (new ReflectionClass($object))->getMethod('index')->getdoccomment(); //define the regular expression pattern to use for string matching $pattern = "#(@[a-zA-Z]+\s*[a-zA-Z0-9, ()_].*)#"; //perform the regular expression on the string provided preg_match_all($pattern, $comment_string, $matches, PREG_PATTERN_ORDER); echo ""; print_r($matches); //this outputs Array ( [0] => Array ( [0] => @param int $id The user id [1] => @throws \Exception If the user id doesn't exist [2] => @return void ) [1] => Array ( [0] => @param int $id The user id [1] => @throws \Exception If the user id doesn't exist [2] => @return void ) ) //you can then be able to access the particular string values by indexNote that \ReflectionClass::getDocComment() ignores all other PHP code and all white-space between the last encountered T_DOC_COMMENT and the class/element definition. The only exceptions appear to be T_NAMESPACE declarations and T_FUNCTION definitions. yields, despite all the garbage in between: string(28) "/** * After namespace. */" To sum up: 1. If there are multiple doc comments, the last encountered applies. 2. Removing the "After namespace." docblock yields FALSE. (The namespace delimits the scope.) 3. Uncommenting the function definition yields FALSE. (The doc comment applies to the function instead.) 4. Despite being an own language construct, the "const" constant declaration does not delimit the scope. 5. Any leading and trailing white-space before and after the T_DOC_COMMENT ("/**...*/") is ignored, but the entire string content within (including all white-space) is consumed literally/verbatim. [PHP 5.4.29]Please note that doc comments are handled differently than regular comments by PHP and the OpCache. Doc comments are actually kept by the OpCache and accessible by this reflection API, unless disabled by the "opcache.save_comments" INI directive, see http://php.net/manual/en/opcache.configuration.php#ini.opcache.save-commentsNot only this method can find a document by a given method name of a class, like this But, also, if there is no method document in the defination, and the class extends from some other class, the program will automatically try to find document from the parent class., like this:
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)