divergentsoft/apns-php
最新稳定版本:0.1.10
Composer 安装命令:
composer require divergentsoft/apns-php
包简介
PHP library for sending iOS remote push notifications
README 文档
README
Library used to send APNS push notifications from PHP.
Example usage:
$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();
统计信息
- 总下载量: 109
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-30