显示日期限制在选择标记Wordpress中

时间:2017-07-17 08:25:48

标签: php wordpress loops date time

我需要通过循环php和wordpress在SELECT标签HTML中显示限制日期。 只需要在四天后显示。

像示例图片:

enter image description here

此外,以这种方式持续数小时和分钟。

谢谢。

1 个答案:

答案 0 :(得分:0)

立即获取

$date = date('Y-m-d');

你可以循环使用以获得接下来的日子

$next_dates = date('DD', strtotime($date .' +1 day'));

循环示例

 for ($x = 0; $x <= 10; $x++) {
    $next_date = date('DD', strtotime($date .' +1 day'));
    echo "The next is: $next_date <br>";
} 

您可以将数据放在<select>标记中<option>