Skip to content

Instantly share code, notes, and snippets.

@eccentricbiped
Created January 27, 2022 20:26
Show Gist options
  • Save eccentricbiped/bcf0bd9fd996011bf93718121a236c62 to your computer and use it in GitHub Desktop.
Save eccentricbiped/bcf0bd9fd996011bf93718121a236c62 to your computer and use it in GitHub Desktop.
CallToSip.php
<?php
echo header('content-type: text/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
/** Get sip endpoint list **/
$params=$_REQUEST['SipUser'];
$toNumberList=explode(",",$params);
?>
<Response>
<?php
for($i=0; $i < sizeof($toNumberList) ;$i++) { $to=$toNumberList[$i]; ?>
<Dial timeout="20">
<Sip>
<?php echo $to; ?>
</Sip>
</Dial>
<?php } ?>
</Response>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment