我正在寻找一个执行php脚本的命令,我每小时指向一次。我尝试自己搜索,但我读过的文章看起来很旧,而且代码不起作用。
答案 0 :(得分:1)
Try this:
0 * * * * /your/path/to/php /var/www/some/path/script.php
or alias (keyword):
@hourly /your/path/to/php /var/www/some/path/script.php
答案 1 :(得分:0)
Do you have a directory called /etc/cron.hourly
? If so, create a new file inside that folder, containing this:
#!/bin/sh
/path/to/php /path/to/your/script.php
Then make that file executable.