当前位置:首页 > PHP教程 > php函数 > 列表

分享几个 Hyperf 常用助手函数

发布:smiling 来源: PHP粉丝网  添加日期:2022-07-01 08:36:01 浏览: 评论:0 

使用 hyperf 已经有一段时间了,下面是一些常用的助手函数,分享一下~~~

  1. <?php 
  2.  
  3.  
  4.  
  5. use Hyperf\Contract\StdoutLoggerInterface; 
  6.  
  7. use Hyperf\HttpServer\Contract\ResponseInterface; 
  8.  
  9. use Hyperf\Logger\LoggerFactory; 
  10.  
  11. use Hyperf\Server\ServerFactory; 
  12.  
  13. use Hyperf\Utils\ApplicationContext; 
  14.  
  15. use Psr\Http\Message\ServerRequestInterface; 
  16.  
  17. use Swoole\Websocket\Frame; 
  18.  
  19. use Swoole\WebSocket\Server as WebSocketServer; 
  20.  
  21.  
  22.  
  23. /** 
  24.  
  25.  * 容器实例 
  26.  
  27.  */ 
  28.  
  29. if (!function_exists('container')) { 
  30.  
  31.     function container() 
  32.  
  33.     { 
  34.  
  35.         return ApplicationContext::getContainer(); 
  36.  
  37.     } 
  38.  
  39.  
  40.  
  41.  
  42. /** 
  43.  
  44.  * redis 客户端实例 
  45.  
  46.  */ 
  47.  
  48. if (!function_exists('redis')) { 
  49.  
  50.     function redis() 
  51.  
  52.     { 
  53.  
  54.         return container()->get(Redis::class); 
  55.  
  56.     } 
  57.  
  58.  
  59.  
  60.  
  61. /** 
  62.  
  63.  * server 实例 基于 swoole server 
  64.  
  65.  */ 
  66.  
  67. if (!function_exists('server')) { 
  68.  
  69.     function server() 
  70.  
  71.     { 
  72.  
  73.         return container()->get(ServerFactory::class)->getServer()->getServer(); 
  74.  
  75.     } 
  76.  
  77.  
  78.  
  79.  
  80. /** 
  81.  
  82.  * websocket frame 实例 
  83.  
  84.  */ 
  85.  
  86. if (!function_exists('frame')) { 
  87.  
  88.     function frame() 
  89.  
  90.     { 
  91.  
  92.         return container()->get(Frame::class); 
  93.  
  94.     } 
  95.  
  96.  
  97.  
  98.  
  99. /** 
  100.  
  101.  * websocket 实例 
  102.  
  103.  */ 
  104.  
  105. if (!function_exists('websocket')) { 
  106.  
  107.     function websocket() 
  108.  
  109.     { 
  110.  
  111.         return container()->get(WebSocketServer::class); 
  112.  
  113.     } 
  114.  
  115.  
  116.  
  117.  
  118. /** 
  119.  
  120.  * 缓存实例 简单的缓存 
  121.  
  122.  */ 
  123.  
  124. if (!function_exists('cache')) { 
  125.  
  126.     function cache() 
  127.  
  128.     { 
  129.  
  130.         return container()->get(Psr\SimpleCache\CacheInterface::class); 
  131.  
  132.     } 
  133.  
  134.  
  135.  
  136.  
  137. /** 
  138.  
  139.  * 控制台日志 
  140.  
  141.  */ 
  142.  
  143. if (!function_exists('stdLog')) { 
  144.  
  145.     function stdLog() 
  146.  
  147.     { 
  148.  
  149.         return container()->get(StdoutLoggerInterface::class); 
  150.  
  151.     } 
  152.  
  153.  
  154.  
  155.  
  156. /** 
  157.  
  158.  * 文件日志 
  159.  
  160.  */ 
  161.  
  162. if (!function_exists('logger')) { 
  163.  
  164.     function logger() 
  165.  
  166.     { 
  167.  
  168.         return container()->get(LoggerFactory::class)->make(); 
  169.  
  170.     } 
  171.  
  172.  
  173.  
  174.  
  175. /** 
  176.  
  177.  * 
  178.  
  179.  */ 
  180.  
  181. if (!function_exists('request')) { 
  182.  
  183.     function request() 
  184.  
  185.     { 
  186.  
  187.         return container()->get(ServerRequestInterface::class); 
  188.  
  189.     } 
  190.  
  191.  
  192.  
  193.  
  194. /** 
  195.  
  196.  * 
  197.  
  198.  */ 
  199.  
  200. if (!function_exists('response')) { 
  201.  
  202.     function response() 
  203.  
  204.     { 
  205.  
  206.         return container()->get(ResponseInterface::class); 
  207.  
  208.     } 
  209.  
  210. }

Tags: Hyperf

分享到: