1

我想像 cron 作业一样使用 Windows 任务计划程序定期运行 CodeIgniter 控制器。我已经使用此方法使用任务调度程序运行了独立的 php 文件,但未能在 CodeIgniter 控制器上实现此功能。

这是我的控制器:

<?php
defined("BASEPATH") OR exit("No direct script access allowed");

class Cron_test extends CI_Controller {

    public $file;
    public $path;

    public function __construct()
    {
        parent::__construct();
        $this->load->helper("file");
        $this->load->helper("directory");

        $this->path = "application" . DIRECTORY_SEPARATOR . "cron_test" . DIRECTORY_SEPARATOR;
        $this->file = $this->path . "cron.txt";
    }

    public function index()
    {
        $date = date("Y:m:d h:i:s");
        $data = $date . " --- Cron test from CI";

        $this->write_file($data);
    }

    public function write_file($data)
    {
        write_file($this->file, $data . "\n", "a");
    }
}

我想index()定期运行方法。

任何帮助将不胜感激。

4

1 回答 1

0

将您的 write_file() 设为私有或受保护的方法,以禁止浏览器使用它。在您的服务器上设置 crontab(如果是 Linux,或者如果是 Windows 服务器则设置时间表)。使用$path(ie $this->path = APPPATH . "cron_test" . DIRECTORY_SEPARATOR;) 的完整路径。使用仔细检查以查看是否发出了 cli 请求。就像是:

<?php
defined("BASEPATH") OR exit("No direct script access allowed");

class Cron_test extends CI_Controller
{

    public $file;
    public $path;

    public function __construct()
    {
        parent::__construct();
        $this->load->helper("file");
        $this->load->helper("directory");

        $this->path = APPPATH . "cron_test" . DIRECTORY_SEPARATOR;
        $this->file = $this->path . "cron.txt";
    }

    public function index()
    {
        if ($this->is_cli_request())
        {
            $date = date("Y:m:d h:i:s");
            $data = $date . " --- Cron test from CI";

            $this->write_file($data);
        }
        else
        {
            exit;
        }
    }

    private function write_file($data)
    {
        write_file($this->file, $data . "\n", "a");
    }
}

比,在你的服务器上设置 crontab。这可能看起来像:

* 12 * * * /var/www/html/index.php cli/Cron_test

(这个每天中午都会行动)。Ubuntu 上的 Cron 参考

于 2016-01-24T13:39:41.377 回答