Skip to content

Instantly share code, notes, and snippets.

@swalberg
Created November 27, 2014 14:53
Show Gist options
  • Save swalberg/d986546d7bc24876047f to your computer and use it in GitHub Desktop.
Save swalberg/d986546d7bc24876047f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial>
<Sip>
sip:PHONENUMBER@IPADDRESS
</Sip>
</Dial>
</Response>
<?php
require "Services/Twilio.php";
$called = preg_replace('/sip:1?(.*?)@.*/', '{$1}', $_POST['Called']);
header("content-type: text/xml");
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
ob_start();
var_dump($called);
var_dump($_POST);
$contents = ob_get_contents();
ob_end_clean();
error_log($contents, 3, "/tmp/twilio.txt");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment