我在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');