这是我的
PHP代码,它生成一个月份名为Year的选择框.我有2个时间戳,我在循环中使用它来启动时间戳和结束时间戳.
现在问题是例如我的开始时间戳代表01.07.2011
并且在循环中我只添加30天的时间戳,然后我选择框7月将显示两次.
如果我加上31天,那么可能会是一个月.
<select name="checkinMonth" class="selectform" id="checkinMonth" > <?PHP for($month = $checkin_timestamp; $month <= $checkout_timestamp; $month += 30*60*60*24) { $checkin_month = getdate($month); $option_text = strftime("%B %Y",$month); $option_value = strftime("%Y%m",$month); $selected = ($checkin_selected == $option_value ? "selected='selected'" : ""); echo "<option value='{$option_value}' {$selected}>{$option_text}</option>"; } ?> </select>
你在寻找类似的东西:
原文链接:https://www.f2er.com/php/136529.htmlstrtotime("+1 month",$myTimestamp);