PHP code example of kacha886 / push

1. Go to this page and download the library: Download kacha886/push library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kacha886 / push example snippets




ey = '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);