我正在尝试获取呼叫者的数字键和记录文件。录音文件也会有哔声(dtmf)。
现在,我只能记录提示 + 键入,但不能在 voice.php 中输入“w”文本字符串。
在示例 voice.xml 文件中,如果我删除“字段标记”,那么它会正常工作,因为它将 wav 文件保存到服务器中。
有谁知道将记录文件和文本输入一起提交是否可行?如果可行,如何修改 vxml 文件?应该使用什么类型的enctype?
如果使用 Nexmo 不可行,是否有其他服务提供商可以支持用户构建这样的场景?
voice.xml 代码
<?xml version="1.0" encoding="UTF-8"?>
<vxml version = "2.1">
<form id="top">
<property name="inputmodes" value="dtmf"/>
<property name="interdigittimeout" value="2s"/>
<property name="timeout" value="4s"/>
<record name="message" beep="true" maxtime="60s" dtmfterm="true">
<field name="w" type="digits?maxlength=6">
<prompt bargein="true">
Please enter 6 digit number.
</prompt>
</field>
</record>
<block>
<submit next="./voice.php" enctype="multipart/form-data" method="post"/>
</block>
</form>
</vxml>
voice.php 代码
<?php
if(!isset($_FILES['message'])){
$mfile = fopen("./log/request.log", "a") or die("unable to open file!");
fwrite($mfile, date('m/d/Y h:i:s a', time())." POST:".print_r($_POST, true)."\n");
fwrite($mfile, date('m/d/Y h:i:s a', time())." GET:".print_r($_GET, true)."\n");
fclose($mfile);
return;
}
switch($_FILES['message']['error']){
case UPLOAD_ERR_OK:
move_uploaded_file($_FILES['message']['tmp_name'], './log/' . $_FILES['message']['name']);
$mfile = fopen("./log/request.log", "a") or die("unable to open file!");
fwrite($mfile, date('m/d/Y h:i:s a', time())." POST:".print_r($_POST, true)."\n");
fwrite($mfile, date('m/d/Y h:i:s a', time())." GET:".print_r($_GET, true)."\n");
fclose($mfile);
$prompt = 'Thanks.';
break;
default:
$prompt = 'Sorry, we could not save your message.';
}
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<vxml version="2.1">
<form>
<block>
<prompt><?php echo $prompt ?></prompt>
</block>
</form>
</vxml>