Asynchronous PHP With Revoltphp & Vonage Voice API

Vonage Dev
Nerd For Tech
Published in
9 min readJan 28, 2022

It may surprise some readers that asynchronous PHP is nothing new. PHP5.5 introduced generators way back in 2014 which set us on this path, and since then we have seen the creation of amphp, ReactPhp, and OpenSwoole.

Hello, fibers!

PHP developers tend not to think in terms of async programming due to the nature of the request/response lifecycle (with the encapsulated state) we are comfortable working with. Something has happened that might just change that though: the introduction of native fibers to PHP8.1. While fibers may not be “true” async execution while runtimes like node.js and Go are, it certainly can give you a massive performance boost if executed without any blocking I/O.

Hello, RevoltPhp!

A new project has been created off the back of the release of PHP8.1, RevoltPhp, which is a collaboration from the creators of amphp & ReactPhp, aiming to bring their experience in co-routines to utilise the new fibers feature. While it’s best to think of it as more an “underlying library” for a framework to use on top of it (concepts such as Read/Writeable Stream callbacks can be pretty difficult to navigate), I’m going to show you a small taster of how you can learn this concept.

Emergency! Asset out of containment!

OK, what I mean is that I’m going to introduce our use case, but I like being a tad dramatic at times. Let’s say we have our real-world dinosaur park. The workforce needs to be notified when a furious, human-eating lizard escapes out of its pen. Thing is, the communications system was written in , and therefore is technically in a blocking I/O language. You need to use Vonage to call 2000 park workers simultaneously with a text-to-voice warning, right? Let’s get to making an asynchronous code thread.

Setting up: PHP 8.1, Composer, Slim, ngrok, Vonage, RevoltPhp

PHP 8.1

You’ll need PHP 8.1 for this, which has not officially been released. Mac users can find it under shivammathur’s homebrew repository, Linux users can find it on ondrej’s apt PPA, and Windows users can find it on the QA section of PHP for Windows.

Composer

We need composer, PHP’s de-facto dependency manager, so follow the installation instructions for that here if you’ve not already got it.

Project space

The following requirements will need your project space, so create a new directory where the code will sit and use composer to create a composer.json configuration. Do this by running the following in your blank directory:

composer init

Slim Framework

To have a truly non-blocking Event Loop and have HTTP request handling, you’d want to use something like ReactPhp’s HTTP client. For this example though, we need some routes open for the Voice API handling, and Slim is a quick way to do this. To get it, we use composer:

composer require slim/slim

We also need a PSR-7 compliant library to handle requests/responses (I’ve gone with Guzzle’s, but several options are available):

composer require guzzlehttp/psr7

ngrok

If you’ve not come across ngrok before, it’s a super useful tool for creating secure URL tunnels into your localhost. We’ll need this for Vonage’s webhooks to work. Check out the installation instructions here and create yourself an account.

Vonage Voice API

Vonage provides a fully-featured API for sending and receiving calls, so we’re going to use the core PHP SDK to send outbound calls. Install it with composer:

composer require vonage/client-core

RevoltPhp

Finally, we need to get the Event Loop from RevoltPhp. It’s currently still pre-release, so you’ll need to specify the dev branch:

composer require revolt/event-loop:dev-main

Setting up Vonage Applications & Numbers

To create outbound calls to warn the blissfully ignorant park workers of the danger at bay, you’ll need to set up your Vonage account accordingly.

Vonage API Account

To complete this tutorial, you will need a Vonage API account. If you don’t have one already, you can sign up today and start building with free credit. Once you have an account, you can find your API Key and API Secret at the top of the Vonage API Dashboard.

This tutorial also uses a virtual phone number. To purchase one, go to Numbers > Buy Numbers and search for one that meets your needs.

Create a new application with Voice capability enabled and download the application keys.

Make that call!

OK, let’s get going on the Slim application. Create a directory in your project route named /public and create a new php file in it named index.php. Our file will look like this:

There’s a lot to digest here, so let’s break it down.

Firstly we’re setting up our Vonage client with our applicaton credentials we created earlier using a Keypair object and reading in the SSH key you downloaded as the first argument, with the application ID as the second:

Next, we simulate a payload of phone numbers to call by using the faker library, set to a variable named $phoneNumbers.

Faker allows you to set a locale, so in this case, I chose UK numbers by setting it to ‘en_GB’. If you want to set a different locale, have a look at the faker documentation here.

We’re using a classic for loop to create the phone numbers into an array here, so we now have 2000 phone numbers ready to get their dino warnings. How do we do it? With a foreach loop in the endpoint:

This tutorial is simulating an example, so don’t run this live! The reason is that 2000 fake phone numbers will be generated, and Vonage will attempt to phone them all!

So, we have an endpoint to hit on our app. It will loop through all the phone numbers to call, but there are two things needed to complete our synchronous warning. Do you see that setAnswerWebhook() method in the code above? Well, once we make that outbound call, Vonage needs to know what to do with it. This is where ngrok and our webhooks come in.

Wiring the calls

Ngrok will open a tunnel up and give you a URL to localhost when you launch it. PHP has a built-in web server, so we’ll use that for localhost and then fire ngrok to open the tunnel. While in the public directory we created, start the built-in PHP web server:

Port 8000 is now opened up on our machine, so enter the following to get ngrok to tunnel it:

All being well, you’ll get a response like this:

The URL it gives you will need to be added to your Vonage application. Navigate to your Vonage application on your dashboard, and hit edit. In the Edit Application panel you can set the voice webhooks for incoming calls; take the ngrok URL and add the paths we’ve put placeholders in when setting the webhooks in our PHP code. For example, if ngrok created the URL https://aef9-82-30-208-179.ngrok.io, we would change our webhook URLs to

Here is where you edit them in the Vonage dashboard:

Then we change our PHP code for our route would now look like this when setting the webhooks:

Setting the warning

We’re going to issue our dino warning with a new route that the answer webhook is pointing to. To use Vonage text-to-speech, we use what is called an NCCO object, which is a fancy term for a JSON object that controls what to do with the call. Add the following route to your index.php:

The NCCO object is given as a JSON response to the webhook, so Vonage knows what to do with it — in this case, the language and style of your choosing will read out the text you give it as you choose.

Back to Async vs. Sync

We have an endpoint for our outbound calls, we have a reply to give when people answer the emergency call. But, the point of this article was about asynchronous code, right? Our emergency endpoint, when hit at runtime, will synchronously loop through each number and phone it; that’s PHP. So, now it’s time for fibers.

Introducing RevoltPhp

RevoltPhp’s Event Loop will continue executing any work until there is no more work to do, and hand back control to the parent thread (this is usually the termination of the application because for a non-blocking I/O PHP app we want the EventLoop to never run out of work).

In our case, our outbound calls are currently synchronous and blocking within the foreach loop. We want to notify all 2000 park employees at once before the inevitable chaos ensues.

RevoltPhp’s Event Loop defines six core callbacks that the EventLoop class will execute:

  • Defer

The callback is executed in the next iteration of the event loop. If there are defers scheduled, the event loop won’t wait between iterations.

  • Delay

The callback is executed after the specified number of seconds. Fractions of a second may be expressed as floating-point numbers.

  • Repeat

The callback is executed after the specified number of seconds, repeatedly. Fractions of a second may be expressed as floating-point numbers.

  • Stream readable

The callback is executed when there’s data on the stream to be read, or the connection is closed.

  • Stream writable

The callback is executed when there’s enough space in the write buffer to accept new data to be written.

  • Signal

The callback is executed when the process received a specific signal from the OS.”

OK, so we need to create callbacks within our route. From our requirements, we’re going to need the repeat callback. Here's what it looks like:

Woah! So what is this?

The Event Loop

EventLoop::run(); will continue to work as long as it has work. So, what we're doing is creating a workload with the static callback creation EventLoop::repeat(). Here are the main parts to it:

  • The first argument to the callback is 0, as this is a float for the interval we want between iterations. No delays please, we have dinos on the loose!
  • The second is our callback generation — we get the callbackID for fiber management.
  • The $static variable keeps a counter of how many callbacks are being created. It's being used as an index for the $phoneNumbers, so once we have no more data, isset($phoneNumbers[$i]) is false and so we cancel the Event Loop with our callback ID for reference.

That’s the code part, but what’s going on under the hood? Finally, we get to:

Asynchronous PHP

Unlike traditional PHP synchronous operations, from the moment the Event Loop is run, the encapsulated repeat callbacks get spread across PHP's runtime fibers. That's 2000 calls fired with fibers instead of being executed synchronously. What is interesting from the PHP developers' point of view is that this has been done without some of the common engineering approaches of spreading the load, such as using Laravel Job/Queue worker or a Serverless architecture with Bref tied to Google Cloud Compute or AWS Lambda. These are all perfectly good approaches, but the main point here is that our approach is plain PHP.

Thanks to Vonage and RevoltPhp, we call all be safe a little quicker, thanks to the tireless efforts of our park staff getting that asset back into containment as fast as possible.

--

--

Vonage Dev
Nerd For Tech

Developer content from the team at Vonage, including posts on our Java, Node.js, Python, DotNet, Ruby and Go SDKs. https://developer.vonage.com