Skip to content

Instantly share code, notes, and snippets.

@twilioforkwc
Created September 22, 2015 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twilioforkwc/33e35792ce0a97593e60 to your computer and use it in GitHub Desktop.
Save twilioforkwc/33e35792ce0a97593e60 to your computer and use it in GitHub Desktop.
<?php
header("content-type: text/xml");
?>
<Response>
<?PHP if (empty($_POST["Digits"])) { ?>
<Say language="ja-jp">リンゴは1を、オレンジは2を、バナナは3を押してください。</Say>
<Gather numDigits="1" timeout="30" />
<?PHP } elseif ($_POST["Digits"] == "1") { ?>
<Say language="ja-jp">リンゴを選択しました。</Say>
<?PHP } elseif ($_POST["Digits"] == "2") { ?>
<Say language="ja-jp">オレンジを選択しました。</Say>
<?PHP } elseif ($_POST["Digits"] == "3") {?>
<Say language="ja-jp">オレンジを選択しました。</Say>
<?PHP } else { ?>
<Say language="ja-jp">入力は1から3までです。</Say>
<?PHP } ?>
</Response>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment