你只需要创建cron文件,然后使用exec来设置cron:
原文链接:https://www.f2er.com/php/130577.html$cron_file = 'cron_filename'; // Create the file touch($cron_file); // Make it writable chmod($cron_file,0777); // Save the cron file_put_contents($cron_file,'* * * * * your_command'); // Install the cron exec('crontab cron_file');
这要求运行PHP的用户有权制作crontabs.默认情况下,此cron文件将替换该用户的任何其他cron,因此请务必询问用户是否要应用cron.还要确保您正在编写crontab文件的文件夹是可写的.