lizhen_gitee vor 1 Jahr
Ursprung
Commit
1f3c9002c2
1 geänderte Dateien mit 17 neuen und 0 gelöschten Zeilen
  1. 17 0
      application/index/controller/Test.php

+ 17 - 0
application/index/controller/Test.php

@@ -0,0 +1,17 @@
+<?php
+
+namespace app\index\controller;
+
+use think\Controller;
+
+use \GatewayWorker\Lib\Gateway;
+class Test extends Controller
+{
+    public function test(){
+
+        $Gateway = new Gateway();
+        $Gateway::$registerAddress = '127.0.0.1:2345';
+        $Gateway::sendToAll('来自主动服务端的推送'.date('Y-m-d H:i:s'));
+
+    }
+}