摘要:
dos2unix /path/to/filename.php crontab -e10 6 * * * /path/to/filename.phpchomod +x /path/to/filename.php#!/usr/bin/php -q<?phpfile_put_contents('/path/to/log', date('Y-m-d H:i:s')."\n",FILE_APPEND);?>这个计划任务每天6点10时执行filename.php文件,简单的写入一行时间到log日志里. 阅读全文