This commit is contained in:
mkm 2023-10-13 10:09:06 +08:00
parent 38bc3b9f96
commit 784f01728f

View File

@ -50,10 +50,13 @@ 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;
$response = json_encode($resp, true);
$connection->send($response);
}