分享几个 Hyperf 常用助手函数
发布:smiling 来源: PHP粉丝网 添加日期:2022-07-01 08:36:01 浏览: 评论:0
使用 hyperf 已经有一段时间了,下面是一些常用的助手函数,分享一下~~~
- <?php
- use Hyperf\Contract\StdoutLoggerInterface;
- use Hyperf\HttpServer\Contract\ResponseInterface;
- use Hyperf\Logger\LoggerFactory;
- use Hyperf\Server\ServerFactory;
- use Hyperf\Utils\ApplicationContext;
- use Psr\Http\Message\ServerRequestInterface;
- use Swoole\Websocket\Frame;
- use Swoole\WebSocket\Server as WebSocketServer;
- /**
- * 容器实例
- */
- if (!function_exists('container')) {
- function container()
- {
- return ApplicationContext::getContainer();
- }
- }
- /**
- * redis 客户端实例
- */
- if (!function_exists('redis')) {
- function redis()
- {
- return container()->get(Redis::class);
- }
- }
- /**
- * server 实例 基于 swoole server
- */
- if (!function_exists('server')) {
- function server()
- {
- return container()->get(ServerFactory::class)->getServer()->getServer();
- }
- }
- /**
- * websocket frame 实例
- */
- if (!function_exists('frame')) {
- function frame()
- {
- return container()->get(Frame::class);
- }
- }
- /**
- * websocket 实例
- */
- if (!function_exists('websocket')) {
- function websocket()
- {
- return container()->get(WebSocketServer::class);
- }
- }
- /**
- * 缓存实例 简单的缓存
- */
- if (!function_exists('cache')) {
- function cache()
- {
- return container()->get(Psr\SimpleCache\CacheInterface::class);
- }
- }
- /**
- * 控制台日志
- */
- if (!function_exists('stdLog')) {
- function stdLog()
- {
- return container()->get(StdoutLoggerInterface::class);
- }
- }
- /**
- * 文件日志
- */
- if (!function_exists('logger')) {
- function logger()
- {
- return container()->get(LoggerFactory::class)->make();
- }
- }
- /**
- *
- */
- if (!function_exists('request')) {
- function request()
- {
- return container()->get(ServerRequestInterface::class);
- }
- }
- /**
- *
- */
- if (!function_exists('response')) {
- function response()
- {
- return container()->get(ResponseInterface::class);
- }
- }
Tags: Hyperf
- 上一篇:PHP让人不知道的匿名函数的几种写法(附代码)
- 下一篇:最后一页
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)