Test.php 337 B

1234567891011121314151617
  1. <?php
  2. namespace app\index\controller;
  3. use think\Controller;
  4. use \GatewayWorker\Lib\Gateway;
  5. class Test extends Controller
  6. {
  7. public function test(){
  8. $Gateway = new Gateway();
  9. $Gateway::$registerAddress = '127.0.0.1:2345';
  10. $Gateway::sendToAll('来自主动服务端的推送'.date('Y-m-d H:i:s'));
  11. }
  12. }