From af1b902a2516f05cd3eeb77a149e011234412920 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 13 Oct 2023 18:22:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Pusher.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/Pusher.php b/app/Pusher.php index b498bc7..bbc8f45 100644 --- a/app/Pusher.php +++ b/app/Pusher.php @@ -74,7 +74,15 @@ class Pusher if ($tts_type == 1) { if (count($arr) == 2) { $resp['payload']['choices']['tts_text'] = $text.$arr[0]; - $text =$arr[1]??''; + unset($arr[0]); + if(count($arr)>0){ + foreach ($arr as $k => $v) { + $text .=$v; + } + }else{ + $text =''; + } + $response = json_encode($resp, true); } else { $resp['payload']['choices']['tts_text'] = '';