Menu

Expand
Rate this page:

Programmable Messaging PHP Quickstart without Composer

In just a few lines of code, your PHP application can send, receive, and reply to text messages with Twilio Programmable SMS.

This PHP SMS Quickstart shows you how to use our Communications REST API, the Twilio PHP helper library, and the Twilio CLI. We'll install all dependencies manually without using a package manager.

We highly recommend trying Composer for package and dependency management in your PHP web applications. If interested, try our standard PHP SMS Quickstart.

In this quickstart, you'll learn how to:

  1. Sign up for Twilio and purchase an SMS-enabled phone number
  2. Check and install any prerequisites manually
  3. Send your first SMS
  4. Set up your development environment to send and receive messages
  5. Receive inbound text messages
  6. Reply to incoming messages with a return SMS
Let's do it – show me how!

Sign up for (or sign in to) Twilio and find a phone number

Already have a Twilio account and SMS-capable number? Go ahead and skip this section.

You can sign up for a free Twilio trial account here.

  • When you sign up, you'll be asked to verify your personal phone number. This helps Twilio verify your identity and also allows you to send test messages to your phone from your Twilio account while in trial mode.
  • Once you verify your number, you'll be asked a series of questions to customize your experience.
  • Once you finish the onboarding flow, you'll arrive at your project dashboard in the Twilio Console. This is where you'll be able to access your Account SID, authentication token, find a Twilio phone number, and more.

If you don't currently own a Twilio phone number with SMS functionality, you'll need to purchase one. After navigating to the Buy a Number page, check the SMS box and click Search.

Buy a twilio phone number.png

You’ll then see a list of available phone numbers and their capabilities. Find a number that suits your fancy and click Buy to add it to your account.

Select an SMS-enabled phone number

I've got an account! What's next?

Install the Twilio CLI

We'll need to use the Twilio CLI (command line interface) for a few tasks, so let's install that next.

The suggested way to install twilio-cli on macOS is to use Homebrew. If you don’t already have it installed, visit the Homebrew site for installation instructions and then return here.

Once you have installed Homebrew, run the following command to install twilio-cli:

brew tap twilio/brew && brew install twilio

The suggested way to install twilio-cli is by using Scoop, a command-line installer for Windows. If you don’t already have it installed, visit the Scoop site for installation instructions and then return here.

Note PowerShell will need to be run as an administrator to avoid common permission issues when installing via Scoop.

  1. Add the twilio-cli Bucket:
    scoop bucket add twilio-scoop https://github.com/twilio/scoop-twilio-cli
  2. Install the app:
    scoop install twilio​

twilio-cli can be installed using the Advanced Package Tool (apt) on most distributions such as Debian, Ubuntu, and Mint.

To do so, run the following commands in your terminal:

wget -qO- https://twilio-cli-prod.s3.amazonaws.com/twilio_pub.asc \
  | sudo apt-key add -
sudo touch /etc/apt/sources.list.d/twilio.list
echo 'deb https://twilio-cli-prod.s3.amazonaws.com/apt/ /' \
  | sudo tee /etc/apt/sources.list.d/twilio.list
sudo apt update
sudo apt install -y twilio

For other installation methods, see the Twilio CLI Quickstart.

Log in to the Twilio CLI

Run twilio login to get the Twilio CLI connected to your account. Visit the Twilio Console, and under Account Info, you’ll find your unique Account SID and Auth Token to provide to the CLI.

Next, we need to install PHP and the Twilio PHP Helper Library.

Sounds excellent! Take me through the install.

Install PHP and the Twilio PHP Helper Library

If you already have PHP and the Twilio PHP Helper Library installed in your working directory, feel free to skip this step and move on to sending your first text message.

To send your first SMS, let's make sure you're set up with PHP and able to install Twilio's PHP Helper library. This quickstart will show you how to install packages manually.

When doing web development in PHP, we strongly suggest using Composer for package management. You can try the standard PHP SMS Quickstart if interested.

Install PHP

If you’re using a Mac or *nix machine, you may have PHP already installed. In your favorite terminal, run:

php --version

If not installed, follow the PHP installation instructions.

If you're using a Windows machine, follow the official PHP tutorial to install PHP.

Many versions of PHP 5.x and PHP 7.x will work for this quickstart, but please pay careful attention to supported PHP releases. Always update your un-supported versions when doing web development as older versions will not receive security updates.

Install the Twilio PHP Helper Library

You'll need to install the Twilio PHP Helper Library in the directory where you will complete the quickstart.

  1. Create a new project directory, or navigate to your project's working directory.
  2. In that directory, download the most recent version of the Twilio PHP Helper Library from Github.
  3. Unzip the PHP helper library in the directory.
I've finished with the prerequisites! Let's send some SMS...

Send an outbound SMS with PHP

Now that we have PHP and twilio-php-main installed manually, we can make a single API request and send an outbound text message from a Twilio phone number.

Create and open a new file called send_sms.php and type or paste in this code sample:

Loading Code Sample...
        
        
        Send an outbound SMS using PHP and the Twilio PHP Helper Library installed without Composer.

        Send an SMS with PHP

        Send an outbound SMS using PHP and the Twilio PHP Helper Library installed without Composer.

        Replace the placeholder Twilio credentials

        In the code, switch the placeholders in account_sid and auth_token with your Twilio credentials. Visit Twilio Console to find your unique Account SID and Auth Token to substitute.

        Replace the values for account_sid and auth_token with your unique values.

        Note: While it's easy to hardcode your credentials in a file for a quickstart, use environment variables to keep them secret in production. Check out how to set environment variables for more information, and see the code comments for an example of how to read them in PHP. This repo is also an excellent resource for dealing with environment variables.

        Replace the 'twilio_number'

        Earlier, you purchased an SMS-enabled phone number. Paste that number into the twilio_number variable using E.164 formatting:

        [+][country code][phone number including area code]

        For example, +18005551212.

        Replace the 'To' number in the create() call

        The first value in the API call to create() is the outgoing phone number, currently set to +15558675310. This can be any phone number that can receive texts... but use a number you control to witness the magic! As above, use E.164 formatting for this number.

        Save the file then run the script:

        php send_sms.php

        Assuming all the values are correct, you should already see the SMS from your Twilio number on your phone!

        If you are on a Twilio Trial account, your SMS messages are limited to phone numbers that you have verified with Twilio. You can verify phone numbers via the Twilio Console's Verified Caller IDs.

        Are your customers in the U.S. or Canada? You can also send MMS messages by adding just a single line of code. Check out this guide to sending MMS to see how.

        That SMS was incredible! What’s next?

        Receive and reply to inbound SMS messages with PHP

        When someone sends an SMS to your Twilio phone number, Twilio makes an HTTP request to your server asking for instructions on what to do next. For this quickstart, we’ll reply to the sender with a note about how we're sending our SMS reply.

        We'll again use the Twilio PHP Library, then use PHP's built-in development webserver in combination with a tool called ngrok to instruct Twilio how to handle the message. Create a new file reply_sms.php in the same directory as send_sms.php, open it, then copy and paste or type the following code.

        (Note: if you do not use the same directory, please follow the PHP Helper Library install step above)

        Loading Code Sample...
              
              
              Reply to an inbound SMS using the Twilio PHP Helper Library installed manually and TwiML.

              Reply to a SMS Using PHP

              Reply to an inbound SMS using the Twilio PHP Helper Library installed manually and TwiML.

              Save the file, then start the PHP development server with:

              php -S localhost:8000

              In your favorite browser, open the URL http://localhost:8000/reply_sms.php.

              If all went smoothly, you should see XML in your browser with our message. And, yes, that's all the code needed - there are just a few more steps before everything is ready to go. Next, let's expose this endpoint to Twilio.

              I'm getting excited now - let's connect PHP to Twilio!

              Configure ngrok and your webhook URL

              We'll use ngrok to set up a tunnel from the public internet to your localhost. This will let us use a public URL as the webhook for your application.

              First, download and configure ngrok.

              Next, run this command to have ngrok set up a tunnel to your localhost:

              ngrok http 8000

              This will start an ngrok tunnel. Copy down the Forwarding URL that ends with ngrok.io.

              Then, you need to configure your Twilio phone number to call your webhook URL whenever a new message comes in:

              1. Go to Phone Numbers > Active Numbers in the Twilio Console.
              2. Select the SMS-enabled Twilio number you want to use.
              3. For the A MESSAGE COMES IN webhook, enter the ngrok URL you copied down earlier. Append /reply_sms.php to the end of the URL.

              Test your application with a text

              Now that everything is glued together, it's time to test.

              Send a text message from your mobile phone to your Twilio phone number. You'll see a couple of things happen very quickly -

              1. Your PHP dev server will note a new connection
              2. Twilio will forward your response back as an SMS!
              It worked, nice! What's next?

              Where to next?

              Now that you know the basics of sending and receiving SMS and MMS text messages with PHP, you might want to check out these resources.

              We hope you enjoyed the quickstart, and definitely can't wait to see what you build!

              Rate this page:

              Need some help?

              We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.

              Loading Code Sample...
                    
                    
                    

                    Thank you for your feedback!

                    Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

                    Sending your feedback...
                    🎉 Thank you for your feedback!
                    Something went wrong. Please try again.

                    Thanks for your feedback!

                    thanks-feedback-gif