我上个月使用以下内容以不同的格式获取,以便以后使用。
<?
date("m", strtotime("first day of -1 month"));
strtolower(date("M", strtotime("first day of -1 month")));
date("F", strtotime("first day of -1 month"));
?>
这应该在 cron 上运行并将它们打印到外部文件。当我手动运行它时,它就像一个魅力,它会打印出正确的月份(七月)。但是,cronjob 打印出 12 月?(脚本在八月运行)。
编辑:php版本是5.4