我正在尝试通过我的应用程序中的 cron 作业向某些用户发送电子邮件通知。
经过几个小时的阅读,我了解到最好的方法是使用 Shell。
请有人可以帮助我了解如何做到这一点,我如何使用一个 myShell 类的不同操作来发送不同的通知?我的意思是如何让 cron 访问 myShell 不同的操作。
例如。
<?php
class MyShell extends Shell {
function send_task_notifications(){
.... //this must send email every day at 00:00 am
}
function send_new_post_notifications() {
.... //this must send email every week//
}
}
?>
这两个动作都在 MyShell 类中。
那么我如何通过 Cron 调用其中一个,并且这个 MyShell 类是否可以通过 URL 访问?