我正在使用 PHP 制作 wordpress 插件。目标是插件将运行到指定的日期,而不是停止。
问题是,假设我说过期日期是 2012 年 9 月 16 日。系统只会在 17/9/2012 08:00 AM 停止插件。我怎样才能让它在 2012 年 9 月 17 日凌晨 12:00 停止。
对应的编码如下所示。需要你的建议。谢谢!
function display($content) {
$exp_date = "16-09-2012";
$todays_date = date("d-m-Y");
$today = strtotime($todays_date);
$expiration_date = strtotime($exp_date);
if ($expiration_date >= $today) {
return flag().$content;
} else {
return $content;
}
}