您现在的位置是:首页 > PHP框架交流PHP框架交流
PHP8.0新特性(2) 注解的使用教程 终于不用三方库支持注解了
上善若水2024-03-04 17:58:37【PHP框架交流】 768人已围观
简介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)
随机图文
-
ThinkPHP6关闭打印sql日志输出 关闭调试模式日志输出
ThinkPHP6关闭日志输出,关闭调试模式日志输出,当需要大量写入数据是,数据库日志就十分的占用磁盘。如果长时间不处理,磁盘分分钟给塞满。 1.关闭.env文件调试APP_DEBUG=false -
笑话几则:哄女孩开心的最佳方式,你知道么
1,老婆买了条狗,没事干就拿着人民币让狗闻。我感觉很奇怪,就问:老婆,你这是干嘛,让狗去给你大马路上捡钱?老婆神秘的一笑:“以后你就知道了!”没过几天,我的私房钱不见了,不说了,说多了都是泪。。。2,刚老婆妇儿拿圆珠笔不停的捣我的头,我说:别捣了,老是捣一个地方疼。老婆一巴掌过来:你也知道老是捣一个地方疼?3,千年后,在某山里住着一位修道千年的老神仙。某天,他徒弟突然问他:师傅,是什么让你 -
json对象如何通过get方式将参数传递 非post方式传递复杂的json对象参数
json对象如何通过get方式将参数传递,一个json对象内包含数组多层级结构如何快速拼接get请求参数,显然通过循环拼接是不靠谱的,非post方式传递复杂的json对象参数.具体实现: json对 -
springboot本地图片上传-读取本地图片http访问回显
前面一片文章实现了图片的简单上传,但是我们要如何实现通过http访问的方式实现可访问呢,其实springboot已经给我们写好了,我们只需本地配置addResourceHandlers即可。在我们的W