我正在使用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'
请告诉我我做错了什么。
提前致谢