我正在为我的项目使用 CodeIgniter。我有这个障碍来自我..
我的控制器中有这个方法,我想每小时调用一次。让我们这样:
class Notifs extends CI_Controller {
public function __construct() {
parent:: __construct();
// load stuff here
}
public function index() {
}
/* I want to call this function on an hourly basis */
public function check_overdue_stuffs() {
// do the checking here
}
}
我完全不知道如何实现这一点。我试过使用sleep($seconds)
,但这只是一团糟。
有什么想法可以完美地做到这一点吗?一个详细的例子会很棒。谢谢!