国产+高潮+在线,国产 av 仑乱内谢,www国产亚洲精品久久,51国产偷自视频区视频,成人午夜精品网站在线观看

web-msg-sender里怎么使用Timer

maltose

老哥,官方文檔上說Timer怎么放在Oxx方法里,但是我現(xiàn)在只會使用web-msg-sender里的這個發(fā)送方法?
public function push()
{
$data = [
'type' => 'publish',
'content' => json_encode($this->content),
'to' => $this->to_user
];
$ch = curl_init ();
curl_setopt($ch, CURLOPT_URL, $this->push_api_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
$res = curl_exec($ch);
curl_close($ch);
dump($res);
}
我現(xiàn)在怎么將Timer加入進去,我沒有找到一個使用這個的實例代碼,你能幫助我嗎?

2451 0 0
0個回答

年代過于久遠,無法發(fā)表回答
??