[], //消息 "tag" => "string", //tag "topic" => "string" // 主题 ]; Client::producer(new Connection())->handle($data); } /** * 批量 * * @return void * @throws GuzzleException */ public function demoBatch() { $data = [ [ "body" => [], //消息 "tag" => "string", //tag "topic" => "string" // 主题 ] ]; Client::producer(new Connection())->handleWithBatch($data); } }