The <token> element defines words or other entities that may be spoken.
| xml:lang | (defaults to "xml:lang" global property or the "xml:lang" attribute of the <grammar> tag) The language identifier as defined in RFC3066. |
For examples and usage information, please refer to the Speech Recognition Grammar Specification
<?php
header("Content-type: text/xml");
echo "<?xml version=\"1.0\"?>\n";
?>
<vxml version="2.0">
<form>
<field name="pet">
<grammar type="application/srgs+xml" root="ROOT" mode="voice">
<rule id="ROOT">
<token>nice</token>
<one-of>
<item>
dog
</item>
<item>
cat
</item>
</one-of>
</rule>
</grammar>
<prompt>
Say either dog or cat.
</prompt>
<filled>
You chose a <value expr="pet"/>.
</filled>
</field>
</form>
</vxml>The output of the above script would be:
Computer: Say either dog or cat.
Human: Nice cat.
Computer: You chose a nice cat.
None