divergentsoft/apns-php

用于发送iOS远程推送通知的PHP库

0.1.10 2016-07-27 13:37 UTC

This package is not auto-updated.

Last update: 2024-09-24 03:24:54 UTC


README

用于从PHP发送APNS推送通知的库。

示例用法

$tokens = ["APNS token from device",...];

$message = new Message();

$message->initialize($tokens);

$message->setAlert("Thunderstorms predicted in your area");

$push = new Push();

$push->connect(false,'cert.pem');

$push->send($message);

// Get a list of failed tokens to remove for next time
$push->getFailedTokens();