1

我正在使用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作业命令

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

请告诉我我做错了什么。

提前致谢

4

1 回答 1

1

我建议你使用wgetwith cronjobs

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

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

我知道你想知道出了什么问题,但我希望这可以帮助:)

于 2013-03-09T10:50:54.890 回答