1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- // 接口公共方法
- use app\common\model\UserMessage;
- use think\Db;
- use JPush\Client;
- require_once env('root_path').'vendor/jpush/jpush/autoload.php';
- function Jpush($user_id = 0,$alert = ''){
- $appKey = '02a7faefd91c8a6a446a6a14';
- $masterSecret = 'ba2e100db997024d9b6e5d35';
- $client = new Client($appKey, $masterSecret,null);
- $push_payload = $client->push()
- ->setPlatform(array('ios', 'android'))
- ->addAlias(strval($user_id))
- ->iosNotification($alert, array(
- 'badge' => '+1',
- 'content-available' => true,
- 'mutable-content' => true,
- 'category' => 'jiguang',
- 'extras' => array(
- 'key' => 'value',
- 'jiguang'
- ),
- ))->androidNotification($alert, array(
- 'title' => '消息通知',
- // 'builder_id' => 2,
- 'extras' => array(
- 'key' => 'value',
- ),
- ))->options(array(
- 'apns_production' => true,// false 开发环境 ,true 生产环境
- ));
- try {
- $response = $push_payload->send();
- return $response;
- } catch (\JPush\Exceptions\APIConnectionException $e) {
- return $e;
- } catch (\JPush\Exceptions\APIRequestException $e) {
- return $e;
- }
- }
- function get_order_sn(){
- $order_id_main = date('YmdHis') . rand(10000000,99999999);
- $order_id_len = strlen($order_id_main);
- $order_id_sum = 0;
- for($i=0; $i<$order_id_len; $i++){
- $order_id_sum += (int)(substr($order_id_main,$i,1));
- }
- $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
- return $osn;
- }
- function encrypt_password($password){
- return password_hash($password,PASSWORD_DEFAULT);
- }
- function check_password($password,$hash)
- {
- return password_verify($password,$hash);
- }
|