Send Notifications with PHP
Learn how to send push notifications to your phone with PHP.
Pushinator is a powerful push notification service that lets you send real-time updates to iPhone, iPad, and Android devices. This guide explains how to use Pushinator with PHP.
Set up your notification channel and devices
First, log in to the Pushinator Console and create a channel (e.g., "PHP Notifications"). Save Channel ID, obtain an API token and save it for later use too.
Install the Pushinator app from the App Store or Google Play on your devices. Use the app to scan your channel’s QR code and subscribe your devices to notifications.
Install the Pushinator PHP package
Install the official Pushinator PHP package using Composer.
composer require appricos/pushinator-php
Send a notification
Use the Pushinator PHP package to send a push notification.
<?php
require 'vendor/autoload.php';
use Pushinator\PushinatorClient;
$client = new PushinatorClient('PUSHINATOR_API_TOKEN');
try {
$client->sendNotification('PUSHINATOR_CHANNEL_ID', 'Hello from PHP!');
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
Need help?
Drop us a message at [email protected], and we will try our best to assist you. Feel free to request a feature or integration, or let us know if there are any issues on our side.