kacha886 / push

显示页面加载时间

v1.0 2018-06-09 11:54 UTC

This package is not auto-updated.

Last update: 2024-09-24 17:24:35 UTC


README

简介

第三方消息推送

安装

$ composer require kacha886/push

示例

<?php

require __DIR__ . '/vendor/autoload.php';

$appKey = 'your-app-key';
$masterSecret = 'your-master-secret';

$alert = 'Hi JPush!';
$extras = [
    'type' => 1,
    'url' => 'http://www.kacha886.com'
];
$platform = ['android', 'ios'];
$audience = [
    'alias' => ['13888888888']
];

$push = new kacha886\Push\JPush($appKey, $masterSecret);
$push->push($alert, $extras, $platform, $audience);