如何从共享主机帐户附加和删除特定的cron作业

时间:2017-04-13 13:21:04

标签: php cron cpanel shared-hosting

我在stackoverflow上发现了以下内容但是想知道如何更改它以便我可以追加并删除特定的cron作业。还想知道这将如何与在共享主机上通过Cpanel建立的cron作业相互作用?

$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');

0 个答案:

没有答案