您现在的位置是:首页 > PHP框架交流PHP框架交流
PHP8.0新特性(2) 注解的使用教程 终于不用三方库支持注解了
上善若水2024-03-04 17:58:37【PHP框架交流】 874人已围观
简介PHP8.0新特性之二注解,注解的使用教程终于不用三方库那种,官方加入了注解,注解用于依赖注入,权限认证,路由生成还是非常合适的,只可惜注解来的太晚,用的人太少了,大部分公司还是用的旧版本PHP.简单
PHP8.0新特性之二注解,注解的使用教程终于不用三方库那种,官方加入了注解,注解用于依赖注入,权限认证,路由生成还是非常合适的,只可惜注解来的太晚,用的人太少了,大部分公司还是用的旧版本PHP.
简单使用下PHP注解吧。
<?php
#熟悉PHP8.0的新特性
//1.注解。
//旧版本不支持注解的方式写法 不好获取注解中的信息,而是采用注释的方式去写注解,idea工具无法识别注解导致误删程序报错异常
#[Component(type: 'service')]
class PostsControllerNew
{
#[Route("/api/posts/{id}", methods: ["GET"])]
public function get($id)
{
return "get";
}
}
#[Attribute]
class Route
{
public $url;
public $methods;
function __construct($url, $methods = ["GET"])
{
$this->url = $url;
$this->methods = $methods;
}
}
#[Attribute]
class Component
{
public $type;
function __construct($type)
{
$this->type = $type;
}
}
//获取注解信息
function getClassAnnotations($class)
{
$annotations = [];
$reflection = new ReflectionClass($class);
$attributes = $reflection->getAttributes();
foreach ($attributes as $attribute) {
$annotations[$attribute->getName()] = $attribute->getArguments();
}
return $annotations;
}
function getMethodAnnotations($class, $method)
{
$annotations = [];
$reflection = new ReflectionClass($class);
$reflectionMethod = $reflection->getMethod($method);
$attributes = $reflectionMethod->getAttributes();
foreach ($attributes as $attribute) {
$annotations[$attribute->getName()] = $attribute->getArguments();
}
return $annotations;
}
print_r(getClassAnnotations(PostsControllerNew::class));
print_r(getMethodAnnotations(PostsControllerNew::class, 'get'));
定义了两个注解,分别需要同过反射来获取到信息!
Array
(
[Component] => Array
(
[type] => service
)
)
Array
(
[Route] => Array
(
[0] => /api/posts/{id}
[methods] => Array
(
[0] => GET
)
)
)
程序的输出结果。希望各大开源框架能迅速接入新版的注解吧!
记得再没有注解前,部分框架的注解是这样写的。
/**
* @ControllerAnnotation(title="测试控制器")
*/
class Test extends AdminController
{
/**
* @NodeAnotation(title="列表")
*/
public function index(){
echo __METHOD__;
}
}
开发的时候总是容易把注解的引用当做无效导入,导致程序报错!
use EasyAdmin\annotation\ControllerAnnotation;
use EasyAdmin\annotation\NodeAnotation;
新版注解PHPstorm提升还算友好,期待注解还后续项目中发光发热!
Tags: PHP8.0
很赞哦! (0)
随机图文
-
php把对象count 统计 实现Countable计算数量 php进阶
php把对象count 统计 count计算数量,我们知道一般count作用于数量,用于计算数组里面的元素数量, class A implements \Countable { /** -
快乐段子(二)
1、本人男,今天上厕所,突然闯进来一女生,我还没反应过来,这女生大吼:“对不起,我什么也没看见。”哥顿时就不爽了,你TM是在嘲笑我小吗?2、有生之年我希望人们用这三句话来羞辱我:1,你怎么帅成这个球样 -
java Map删除值为null的元素 lamada表达式一行代码就搞定
由于map在使用foreach循环中删除元素的话会报空指针异常,只能采用迭代器的方式删除元素,写好代码后编译器竟然意外的提示我将代码改成lamada表达式,瞬间代码精简,idea牛逼!map.entr -
使用thymeleaf渲染第一个页面 博客首页
在搭建完springboot+thymeleaf环境后,可以先尝试先渲染一个页面静态页面,由于数据库还未准备就绪,就先只显示页面,springboot默认为我们配置有"classpath:/META-