透過 CPanel 在 Cron 作業中執行 PHP 檔案
Cron 作業是安排在指定時間間隔執行的自動化任務。對於PHP 腳本,在CPanel cron 作業中執行它們的語法是:
/usr/bin/php -q /path/to/script.php >/dev/null
Cron 作業的電子郵件通知
在cron 作業時接收電子郵件通知成功完成後,如下設定PHP腳本:
<code class="php">// Set the From and To email addresses $from = "cronjob@example.com"; $to = "your_email@example.com"; // Specify the subject and body of the email $subject = "Cron Job Execution Report"; $body = "The cron job has completed successfully."; // Send the email using PHP's mail function mail($to, $subject, $body, "From: $from");</code>
有電子郵件通知的Cron 作業指令範例
/usr/bin/php -q /home/username/public_html/cron/cron.php | mail -s "Cron Job Execution Report" your_email@example.com
GoDaddy 的替代語法 >
GoDaddy 的替代語法
>/usr/bin/php -q /home/username/public_html/yourfilename.php對於GoDaddy 伺服器,可以使用以下指令啟動PHP 檔案的cron作業:
以上是如何在 cPanel 中設定用於電子郵件通知的 PHP cron 作業?的詳細內容。更多資訊請關注PHP中文網其他相關文章!