In this guide we'll show you how to manipulate live phone calls using PHP. We'll also cover how to retrieve information about in progress and completed calls from your Twilio account.
We'll use Twilio's PHP SDK in these examples to interact with the Twilio REST API's Calls endpoint.
Modifying Twilio phone calls in progress with PHP
The simplest way to control the flow of a Twilio phone call is with TwiML itself.
You can use the "action" parameters of verbs like <Gather> and <Record> to tell Twilio to get new instructions from your applications during a call. You can also use the <Redirect> verb to explicitly tell Twilio to fetch new TwiML.
But sometimes you need to change a live phone call outside of Twilio's normal request-response cycle. For those cases you can update the Call to tell Twilio to immediately change the TwiML it's using in a phone call.
Update an in progress Call with new TwiML instructions
PHP
_19
<?php
_19
_19
// Update the path below to your autoload.php,
_19
// see https://getcomposer.org/doc/01-basic-usage.md
_19
require_once "/path/to/vendor/autoload.php";
_19
_19
use Twilio\Rest\Client;
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure
In order to update the call you will need to use the CallSid. Twilio returns this when you initiate an outgoing call, and also includes the CallSid in its request to your application for an incoming call's initial TwiML.
As an alternative to updating your call with TwiML directly, you may also redirect a Call to a new URL that responds with your requested TwiML.
Redirect an in progress Call to a new URL
PHP
_20
<?php
_20
_20
// Update the path below to your autoload.php,
_20
// see https://getcomposer.org/doc/01-basic-usage.md
_20
require_once "/path/to/vendor/autoload.php";
_20
_20
use Twilio\Rest\Client;
_20
_20
// Find your Account SID and Auth Token at twilio.com/console
_20
// and set the environment variables. See http://twil.io/secure
Twilio will end phone calls for you when it encounters a <Hangup> verb or when it runs out of TwiML to process. But you can also end phone calls whenever you like by passing a "completed" status to a CallSid in progress.
Terminate a Running Call
PHP
_19
<?php
_19
_19
// Update the path below to your autoload.php,
_19
// see https://getcomposer.org/doc/01-basic-usage.md
_19
require_once "/path/to/vendor/autoload.php";
_19
_19
use Twilio\Rest\Client;
_19
_19
// Find your Account SID and Auth Token at twilio.com/console
_19
// and set the environment variables. See http://twil.io/secure