$api_url = Config::get('param.ws.apiHost');
            $inner_http_worker = new Worker('http://0.0.0.0:9091');
            $inner_http_worker->onMessage = function ($http_connection,$data) use ($io) {
                
                $params = $_POST ? $_POST : $_GET;
               
                // 推送数据的url格式 type=publish&to=user&content=xxxx
                    
                    switch (@$params['type']) {
                    case 'publish':
                        $to = @$params['to'];
使用域名加9091?type=publish&to=user&content=xxxx
报错 Undefined index: type
直接访问的