修复
This commit is contained in:
parent
784f01728f
commit
417504c0c8
11
app/Tts.php
11
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;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user