修复
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 != '') {
|
if ($data != '') {
|
||||||
$arr=explode('。',$data);
|
$arr=explode('。',$data);
|
||||||
$count=count($arr);
|
|
||||||
foreach($arr as $k=>$v){
|
foreach($arr as $k=>$v){
|
||||||
if(strlen($v)>1){
|
if(strlen($v)>1){
|
||||||
$url = $this->tts($v);
|
$url = $this->tts($v);
|
||||||
$resp['mp3'] = $url;
|
$resp['mp3'] = $url;
|
||||||
$resp['key'] = $k;
|
$resp['key'] = 'true';
|
||||||
$resp['count'] = $count;
|
|
||||||
$response = json_encode($resp, true);
|
$response = json_encode($resp, true);
|
||||||
$connection->send($response);
|
$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