Skip to content

Instantly share code, notes, and snippets.

@metaist
Created June 11, 2015 18:18
Show Gist options
  • Save metaist/8cff2245c2d0841e8d33 to your computer and use it in GitHub Desktop.
Save metaist/8cff2245c2d0841e8d33 to your computer and use it in GitHub Desktop.
Better TwiML Echo
<?php
header('Content-Type: text/xml');
$result = $_GET['Twiml'];
foreach($_REQUEST as $k => $v) {
if ($k === 'Twiml') { continue; } // avoid infinite loop
$result = str_replace('${' . $k . '}', $v, $result);
}//end for: replaced all the tokens
echo $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment