解析PHP,在特定日期和时间发送通知

时间:2016-06-30 17:25:36

标签: php parse-platform push-notification

首先,先谢谢我的Google / English。 我正在使用库解析php。 下面的代码向特定用户发送通知。 尝试设置发货日期。 收据通知正确,但立即。 它忽略了push_time中设置的日期。

¿有人知道我做错了吗?

$format = 'Y-m-d\TH:i:s\Z';

$datetime = date($format, strtotime('+120 second'));
$d = new DateTime( $datetime );

$pushQuery = ParseInstallation::query();
$pushQuery->equalTo('userId', $this->input->post('userId'));

ParsePush::send(array(
    "where" => $pushQuery,
    "push_time" => $d,
    "data" => array("alert" => 'Test message')
    ), true);

0 个答案:

没有答案