'lame', 'sfl' => 1, 'vcn' => 'x4_lingxiaoyao_en' ]; public function onConnect(TcpConnection $connection) { echo "onConnect\n"; } public function onWebSocketConnect(TcpConnection $connection, $http_buffer) { echo "onWebSocketConnect\n"; } public function onMessage(TcpConnection $connection, $data) { $data = json_decode($data); if (isset($data->data)) { $data = $data->data; } if ($data == '') { return $connection->send(['header' => ['code' => 10003, 'message' => '消息不能为空']]); } if ($data != '') { $arr=explode('。',$data); foreach($arr as $k=>$v){ if(strlen($v)>1){ $url = $this->tts($v); $resp['mp3'] = $url; $resp['key'] = 'true'; $response = json_encode($resp, true); $connection->send($response); } } $resp['mp3'] = ''; $resp['key'] = 'false'; $response = json_encode($resp, true); $connection->send($response); } } public function onClose(TcpConnection $connection) { echo "onClose\n"; } function tts($text) { $name = time() . rand(1, 100000) . '.mp3'; $tts = new extend\IFlytek\Xfyun\Speech\TtsClient($this->app_id, $this->api_key, $this->api_secret, $this->ttsConfig); file_put_contents(public_path('tts') . '/' . $name, $tts->request($text)->getBody()->getContents()); return 'https://chat.lihaink.cn/tts/' . $name; } }