Get DTMF tones from the user and say the digits

  1. #!/usr/local/bin/php -q
  2. <?php
  3.   require('phpagi.php');
  4.   error_reporting(E_ALL);
  5.  
  6.   $agi new AGI();
  7.   $agi->answer();
  8.  
  9.   $cid $agi->parse_callerid();
  10.   $agi->text2wav("Hello, {$cid['name']}.");
  11.   do
  12.   {
  13.     $agi->text2wav('Enter some numbers and then press the pound key. Press 1 1 1 followed by the pound key to quit.');
  14.     $result $agi->get_data('beep'300020);
  15.     $keys $result['result'];
  16.     $agi->text2wav("You entered $keys");
  17.   while($keys != '111');
  18.   $agi->text2wav('Goodbye');
  19.   $agi->hangup();
  20. ?>

Documentation generated on Thu, 30 Sep 2010 02:22:03 -0700 by phpDocumentor 1.4.2