当前位置 : 主页 > 网络编程 > PHP >

sowft注解

来源:互联网 收集:自由互联 发布时间:2023-11-09
一、概念: 为什么要使用注解? ①. PHP是没有注解,所以只能用注释来模拟.②. 借鉴了Java spring的思想.③. 一般框架会使用Doctrine Annotations库:https://github.com/doctrine/annotations④. swoole是常驻内

一、概念:

  1. 为什么要使用注解?

①. PHP是没有注解,所以只能用注释来模拟. ②. 借鉴了Java spring的思想. ③. 一般框架会使用Doctrine Annotations库: https://github.com/doctrine/annotations ④. swoole是常驻内存的,使用IoC容器结合注解特别有意义.1.1 反射实现注解原理:

PHP中利用反射(getDocComment)来读取类或方法上的注释内容(一堆字符串),再正则或其它方式解析出"有规则的内容".

①. 获取文档注释:
public ReflectionClass::getDocComment(void): string

②. 举例:
/**
* This is an Example class
*/
class Example
{
    /**
     * This is an example function
     */
    public function fn() {}
}
$reflector = new ReflectionClass('Example');
echo $reflector->getDocComment();                 # // to get the Class DocBlock
$reflector->getMethod('fn')->getDocComment();     # // to get the Method DocBlock
【感谢龙石为本站提供数据api平台http://www.longshidata.com/pages/exchange.html】
网友评论