第http://andilek.laceup.cz/komunita/页,我试图通过将ACF日期与今天的日期进行比较来将将来的旅程与过去的旅程分开。但是今天的比较日期似乎总是更高。
$today = date("m/d/Y");
$todayj = strtotime($today);
$pdate = get_field('datum', false, false);
$pdate = new DateTime($pdate);
$pdatex = $pdate->format('m/d/Y');
if ($pdatex > $todayj) {
感谢您的帮助, 米哈尔
答案 0 :(得分:0)
$date1 = strtotime("2019-01-20"); // input
$date2 = strtotime("today"); //today date
if($date1 < $date2) {
echo " input date is in the past";
}
尝试这种方式