更新
This commit is contained in:
parent
44d6469801
commit
248a5232c0
@ -75,10 +75,14 @@ class Pusher
|
||||
if (count($arr) == 2) {
|
||||
$resp['payload']['choices']['tts_text'] = $text . $arr[0];
|
||||
unset($arr[0]);
|
||||
if (count($arr) > 0) {
|
||||
foreach ($arr as $k => $v) {
|
||||
$text .= $v;
|
||||
}
|
||||
$tt='';
|
||||
$pattern = "/[,.?!;:]/";
|
||||
|
||||
foreach ($arr as $k => $v) {
|
||||
$tt .= $v;
|
||||
}
|
||||
if ($tt!=''||preg_match($pattern, $tt)) {
|
||||
$text.=$tt;
|
||||
} else {
|
||||
$text = '';
|
||||
}
|
||||
@ -92,7 +96,17 @@ class Pusher
|
||||
}
|
||||
$connection->send($response);
|
||||
} else {
|
||||
$resp['payload']['choices']['tts_text'] = $text.$resp['payload']['choices']['text'][0]['content'];
|
||||
$a=$resp['payload']['choices']['text'][0]['content'];
|
||||
if(strlen($a)>0){
|
||||
$pattern = "/[,.?!;:]/";
|
||||
if (preg_match($pattern, $a)) {
|
||||
$resp['payload']['choices']['tts_text'] = $text;
|
||||
} else {
|
||||
$resp['payload']['choices']['tts_text'] = $text.$a;
|
||||
}
|
||||
}else{
|
||||
$resp['payload']['choices']['tts_text'] = $text.$a;
|
||||
}
|
||||
$text = '';
|
||||
$response = json_encode($resp, true);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user