sendMsg($webhook, [ 'text' => $content ]); } /** * 组装发送消息 * @param string $webhook * @param array $data 消息内容数组 * @return bool 发送结果 */ private function sendMsg(string $webhook, array $data): bool { $result = HttpService::instance() ->url($webhook) ->data($data) ->toArray(); return $result['code'] !== 0; } }