我使用cakephp创建了一个web服务,它在mysql上存储了一些数据,包括android应用程序提供的日期和时间。
现在我希望在精确日期和时间(cron作业类型)上将数据发送到另一台设备,但我没有找到该怎么做!
任何想法如何解决?!
答案 0 :(得分:0)
是的,可以每分钟使用一次cronjob
cronjob命令
* * * * * wget -q --spider http://example.com/controller/function
在控制器功能中检查与当前日期时间相关的精确日期和时间,并且它们匹配,执行您的操作
$current_time = date("Y-m-d H:i:s");
$precise_time = "2017-05-12 9:52:00"; // for example
if($current_time == $precise_time){
// Send data to another device
}