dev-master
9999999-dev https://github.com/kongkannika/GoogleCloudMessagingPush Notification to Google Cloud Messaging PHP for Android
The Requires
- php >=5.2.0
php cloud google messaging notification push gcm
Wallogit.com
2017 © Pedro Peláez
Push Notification to Google Cloud Messaging PHP for Android
Push Notification to Android device by using PHP., (*1)
<?php
include_once 'GoogleCloudMessaging.php';
$registerationIds = array(
'APA91bH-lf7YXuGvkD1-iCtcgSr4vrWbqkxIz1idD_VGzcLiUSqJd...',
'APA91bFUvwEtgOMQcqXVn06jheApvsZAQ2KSsZrPQSdRzO5eadU4E...',
'APA91bGZT_5uyha9nRnWZnUf6OcL_c971Pd4ckAceQPfJ3b57NhhC...',
//...
);
$data = array(
'id' => 1000,
'message' => "Hello Android! You've got a message from me ^_^",
'url' => 'http://www.google.com',
//...
);
$gcm = new GoogleCloudMessaging('GCM_API_KEY');
$gcm->pushMessageToManyDevices($registerationIds, $data);
?>
<?php
include_once 'GoogleCloudMessaging.php';
$registerationId = 'APA91bH-lf7YXuGvkD1-iCtcgSr4vrWbqkxIz1idD_VGzcLiUSqJd...';
$data = array(
'id' => 1000,
'message' => "Hello Android! You've got a message from me ^_^",
'url' => 'http://www.google.com',
//...
);
$gcm = new GoogleCloudMessaging('GCM_API_KEY');
$gcm->pushMessageToOneDevice($registerationId, $data);
?>
http://developer.android.com/google/gcm/gs.html, (*2)
DONE!, (*3)
Push Notification to Google Cloud Messaging PHP for Android
php cloud google messaging notification push gcm