我有三个不同的php文件,每个文件都要计划:
有人能告诉我在Ubuntu中怎么做吗?
答案 0 :(得分:2)
您可以编辑/etc/crontab:
*/15 * * * * php every15minutes_file.php
*/30 * * * * php every30minutes_file.php
0 * * * * php every1hour_file.php #it will run on full hour
您还可以探索https://crontab.guru来更好地理解