From 417504c0c82fef242b73661bda198a4169626416 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 13 Oct 2023 10:14:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Tts.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/Tts.php b/app/Tts.php index ffd75fa..1886881 100644 --- a/app/Tts.php +++ b/app/Tts.php @@ -50,17 +50,22 @@ class Tts if ($data != '') { $arr=explode('。',$data); - $count=count($arr); foreach($arr as $k=>$v){ if(strlen($v)>1){ $url = $this->tts($v); $resp['mp3'] = $url; - $resp['key'] = $k; - $resp['count'] = $count; + $resp['key'] = 'true'; $response = json_encode($resp, true); $connection->send($response); + return true; } } + $resp['mp3'] = ''; + $resp['key'] = 'false'; + $response = json_encode($resp, true); + $connection->send($response); + return true; + } }