我想只在当前日期和时间小于结束日期但条件不起作用时才执行条件。我的代码中存在一些我无法找到的小问题。如何获取当前日期和时间作为strtotime的格式(“2016年8月19日下午05:15”);功能,所以我可以比较他们两个?
<?php
$startdate = strtotime("05:15pm August 19 2016");
$enddate = strtotime("05:14pm August 19 2016", $startdate);
$current = date("h:i M d y");**strong text**
echo date("h:i M d y", $current);
if ($current < $enddate) {
echo date("M d", $startdate) . "<br>";
echo " <strong> What do you prefer?</strong>
<form role=\"form\" method=\"post\" action=\"VotingProcessing.php\">
<label class=\"radio-inline\">
<input type=\"radio\" name=\"optradio\" value=\"Breakfast\">Breakfast
</label>
<label class=\"radio-inline\">
<input type=\"radio\" name=\"optradio\" value=\"Lunch\">Lunch
</label>
<label class=\"radio-inline disabled\">
<input type=\"radio\" name=\"optradio\">Both
</label>
<input type=\"submit\" name=\"submit\">
</form>";
$startdate = strtotime("+1 week", $startdate);
}
else{
echo "Expired";
}