我正在使用代码点火器并从 cron 作业中运行一个函数。
class event extends CI_Controller {
public function newEvent()
{
//some process here using the parameter
}
}
cron 命令:
* */2 * * * /usr/bin/php /var/www/project/index.php 'event/newEvent/parameter'
我想像写在 cron 命令中一样传递参数,并在 newEvent 函数中使用该参数进行一些处理。
我应该在我的函数中编写什么额外的代码来接收来自 cron 命令的参数。
谢谢