diff --git a/app/Tts.php b/app/Tts.php index 892a933..ffd75fa 100644 --- a/app/Tts.php +++ b/app/Tts.php @@ -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); }