我每天都想运行一个脚本并检查一些条件,并基于 那些条件,我想将数据插入数据库。
我正在使用Cron-Job(Controller)来自动执行此过程。 在我自动化的脚本文件(即Controller)中,我正在尝试加载“view”文件(脚本)。只有控制器被执行,而不是'视图'文件,即数据没有被插入数据库。
这是我第一次使用Cron-Jobs,请指导我。
* * * * * php /home/<cpanel_username>/public_html/index.php Controller_name
CodeIgniter框架(3.1)/ PHP(5.6)。
托管服务器:Justhost(cPanel 2.2)。
答案 0 :(得分:0)
请查看以下实施cronjob的方式。
作业定义示例:
.---------------- minute (0 - 59)
|
.------------- hour (0 - 23)
|
| .---------- day of month (1 - 31)
|
| | .------- month (1 - 12) OR jan,feb,mar,apr ...
|
| | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
|
| | | |
* * * * * command to be executed
答案 1 :(得分:0)
您能否找到以下示例。
我每隔1天使用一次
crontab -e
添加:
0 0 * * 1 your/command