如何从cron作业将参数传递给codeigniter函数?

时间:2013-03-09 10:36:10

标签: php codeigniter crontab

我正在使用codeigniter框架。我试图将参数传递给玉米选项卡中的函数。下面我发布了我的代码和cron命令。

class Test extends CI_Controller {
    public function index(){
        $this->home(); //shows the home function
    }

    public function my_test($parameter)
    {
      //do something here using $parameter;
    }
 }

cron job命令

10 5 * * * * /usr/bin/php /var/www/myproject/index.php 'test/my_test/2'

请告诉我我做错了什么。

提前致谢

1 个答案:

答案 0 :(得分:1)

我建议你使用wget和cronjobs

wget http://example.com/index.php/controller/method/paramValue

我遇到了同样的问题,然后将其转换为使用wget

我知道你想知道什么是错的,但我希望这可以帮助:)