首页 > 作文

Yii1.1框架实现PHP极光推送消息通知功能

更新时间:2023-04-06 17:11:58 阅读: 评论:0

一、下载极光推送php sdk,解压后放在/protected/components/目录下,如下图所示:

二、完善修改下官方的demo例子,我这里复制一份demo,改为notifypush.php,如下代码:

<?phprequire dirname(__file__) . '/jpush-api-php-client/autoload.php';u jpush\client as jpush;class notifypush { static function pushalias($alias,$ticket='消息提醒',$alert){  $appkey=yii::app()->params['push']['appkey'];  $appmastercret=yii::app()->params['push']['appmastercret'];  $production_mode=yii::app()->params['push']['production_mode'];  $client = new jpush($appkey, $appmastercret);// 完整的推送示例// 这只是使用样例,不应该直接用于实际生产环境中 !!  try {   $respon = $client->push()    ->tplatform(array('ios', 'android'))    // 一般情况下,关于 audience 的设置只需要调用 addalias、addtag、addtagand 或 addregistrationid    // 这四个方法中的某一个即可,这里仅作为示例,当然全部调用也可以,多项 audience 调用表示其结果的交集    // 即是说一般情况下,下面三个方法和没有列出的 addtagand 一共四个,只适用一个便可满足大多数的场景需求    ->addalias($alias)    ->tnotificationalert($alert)    ->iosnotification($ticket, array(     'sound' => 'sound.caf',     // 'badg冬天的特点e' => '+1',   效能监察工作总结  // 'content-available' => true,     // 'mutable-content' => true,     'category' => 'jiguang',     'extras' => array(      'key' => 'value',      'jiguang'     ),    ))    ->androidnotification($ticket, array(     'title' => $alert,     // 'build_id' => 2,     'extras' => array(      'key' => 'value',      'jiguang'     ),    ))    ->message($alert, array(     'title' => $alert,     // 'content_type' => 'text',     'extras' => array(      'key' => 'value',      'jiguang'     ),    ))    ->options(array(     // ndno: 表示推送序号,纯粹用来作为 api 调用标识,     // api 返回时被原样返回,以方便 api 调用方匹配请求与返回     // 这里设置为 100 仅作为示例     // 'ndno' => 100,     // time_to_live: 表示离线消息保留时长(秒),     // 推送当前用户不在线时,为该用户保留多长时间的离线消息,以便其上线时再次推送。     // 默认 86400 (1 天),最长 10 天。设置为 0 表示不保留离线消息,只有推送当前在线的用户可以收到     // 这里设置为 1 仅作为示例     // 'time_to_live' => 1,     // apns_production: 表示apns是否生产环境,     // true 表示推送生产环境,fal 表示要推送开发环境;如果不指定则默认为推送生产环境     'apns_production' => $production_mode,     // big_push_duration: 表示定速推送时长(分钟),又名缓慢推送,把原本尽可能快的推送速度,降低下来,     // 给定的 n 分钟内,均匀地向这次推送的目标用户推送。最大值为1400.未设置则不是定速推送     // 这里设置为 1 仅作为示例     // 'big_push_duration' => 1    ))    ->nd();   print_r($respon);  } catch (\jpush\exceptions\apiconnectionexception $e) {   // try something here   print $e;  } catch (\jpush\exceptions\apirequestexception $e) {   // try something here   print $e;  } } static function pushall($ticket='消息提醒',$alert){  $appkey=yii::app()->params['push']['appkey'];  $appmastercret=yii::app()->params['push']['appmastercret'];  $production_mode=yii::app()->params['push']['production_mode'];  $client = new jpush($appkey, $appmastercret);// 完整的推送示例// 这只是使用样例,不应该直接用于实际生产环境中 !!  try {   $respon = $client->push()    ->tplatform(array(唱童谣'ios', 'android'))    ->taudience('all')    // 一般情况下,关于 audience 的设置只需要调用 addalias、addtag、addtagand 或 addregistrationid    // 这四个方法中的某一个即可,这里仅作为示例,当然全部调用也可以,多项 audience 调用表示其结果的交集    // 即是说一般情况下,下面三个方法和没有列出的 addtagand 一共四个,只适用一个便可满足大多数的场景需求    ->tnotificationalert($alert)    ->iosnotification($ticket, array(     'sound' => 'sound.caf',     // 'badge' => '+1',     // 'content-available' => true,     // 'mutable-content' => true,     'category' => 'jiguang',     'extras' => array(      'key' => 'value',      'jiguang'     ),    ))    ->androidnotification($ticket, array(     'title' => $alert,     // 'build_id' => 2,     'extras' => array(      'key' => 'value',      'jiguang'     ),    ))    ->message($alert, array(     'title' => $alert,     // 'content_type' => 'text',     'extras' => array(      'key' => 'value',      'jiguang'     ),    ))    ->options(array(     // ndno: 表示推送序号,纯粹用来作为 api 调用标识,     // api 返回时被原样返回,以方便 api 调用方匹配请求与返回     // 这里设置为 100 仅作为示例     // 'ndno' => 100,     // time_to_live: 表示离线消息保留时长(秒),     // 推送当前用户不在线时,为该用户保留多长时间的离线消息,以便其上线时再次推送。     // 默认 86400 (1 天),最长 10 天。设置为 0 表示不保留离线消息,只有推送当前在线的用户可以收到     // 这里设置为 1 仅作为示例     // 'time_to_live' => 1,     // apns_production: 表示apns是否生产环境,     // true 表示推送生产环境,fal 表示要推送开发环境;如果不指定则默认为推送生产环境     'apns_production' => $production_mode,     // big_push_duration: 表示定速推送时长(分钟),又名缓慢推送,把原本尽可能快的推送速度,降低下来,     // 给定廉政文化进校园的 n 分钟内,均匀地向这次推送的目标用户推送。最大值为1400.未设置则不是定速推送     // 这里设置为 1 仅作为示例     // 'big_push_duration' => 1    ))    ->nd();   print_r($respon);  } catch (\jpush\exceptions\apiconnectionexception $e) {   // try something here   print $e;  } catch (\jpush\exceptions\apirequestexception $e) {   // try something here   print $e;  } }}

三、调用notifypush.php里的方法,实现推送,如下代码:

class cronnotifypushcommand extends cconsolecommand{ public $keys=array(); public function init(){  parent::init(); } public function actionindex(){  echo 'start cronnotifypushcommand '.chr(10);  if(!yii::app()->params['push']['push_status']){   echo 'push status disabled';die(); 行政助理工作内容 }  $rkey='message_notify_list';  $waittotals=fredis::model()->redis->lsize($rkey);  echo 'wait totals:'.$waittotals.chr(10);  $waitresult=true;  $i=0;  while($waitresult) {$i++;   echo $i.'/'.$waittotals.' wait to do'.chr(10);   $waitresult=fredis::model()->redis->rpop($rkey);   if(!$waitresult) {    continue;   }   $db_data=unrialize($waitresult);var_dump($db_data);   $message_content=$db_data['message_content'];   $uid=$db_data['uid'];   $alias=$uid;   if($uid==0){    notifypush::pushall($message_content, $message_content);   }el {    notifypush::pushalias($alias, $message_content, $message_content);   }  }  echo 'end'.chr(10); }}

总结

以上所述是www.887551.com给大家介绍的yii1.1框架实现php极光推送消息通知,希望对大家有所帮助

本文发布于:2023-04-06 17:11:57,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/23857d602a837c89d6e5049c09e49bda.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Yii1.1框架实现PHP极光推送消息通知功能.doc

本文 PDF 下载地址:Yii1.1框架实现PHP极光推送消息通知功能.pdf

标签:示例   离线   设置为   环境
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图