本文整理汇总了PHP中Pusher::push方法的典型用法代码示例。如果您正苦于以下问题:PHP Pusher::push方法的具体用法?PHP Pusher::push怎么用?PHP Pusher::push使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pusher
的用法示例。
在下文中一共展示了Pusher::push方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Pusher
<?php
include "pusher.php";
$push = new Pusher();
$push->set_ios('Password', 'path/to/cert.pem');
$push->set_ios_devices('deviceToken');
$push->set_android("apitoken");
$push->set_android_devices("deviceToken");
$push->set_message("Notification with custom data");
$push->set_title("Custom data");
$push->set_number(1);
$push->set_sound("default");
$push->set_custom('{"x":157,"y":100}');
$push->push();
print_r($push->get_errors());
示例2: newNoti
public function newNoti()
{
//获取客户端发送的json
$arr = json_decode($GLOBALS['HTTP_RAW_POST_DATA']);
$uid = 111;
//用户名为学号,也是数据库中的ID
//$id=$arr->id;//文章ID号(为14位年月日时分秒)
$title = "123";
//$arr->title;//$arr->noti->title;//文章标题
//$uid=$arr->username;//创建该文章的用户ID
// $date=$arr->date;//创建文章的年月日时分秒
//$tid=$arr->tid;//
$bodyofhtml = "<p>111</p>";
//$arr->content;//$arr->noti->content;//文章的内容(保存为html)
$grade = "研一;研二;研三";
//$arr->noti->viewlevel;//可查看该文章的年级
//对时间进行处理;
// $datetime= date("YmdHis",strtotime($date));//获取当前时间
$datesql = date("Y-m-d", strtotime('now'));
//
$Model = new Model();
//从数据库中获取一个整数型的uuid,并设置为文章的ID号
$sql = "select uuid_short();";
$res = $Model->query($sql);
$id = $res[0]['uuid_short()'];
$sql = "insert into __PREFIX__article(id,title,uid,date,body,grade)\r\n values ({$id},'{$title}',{$uid},'{$datesql}','{$bodyofhtml}','{$grade}')";
if ($Model->execute($sql)) {
$suc = 1;
} else {
$suc = 0;
}
$datesql = date("Y-m-d", strtotime($datesql));
$jsonsend = array("title" => $title, "date" => $datesql, "jwt" => $json->jwt);
$json = json_encode($jsonsend);
//向数据库中增加表
$this::insertNotiuser($id);
$config = array('from' => '123', 'to' => '', 'content' => $title, 'viewlevel' => '1', 'action' => '1');
vendor("messagePush-master.Pusher");
vendor("messagePush-master.MessageBuilder");
$result = \Pusher::push((new \MessageBuilder($config))->build());
}