選択入力で一連のオプションを提供するこの関数があります。オプションは、5分間隔で時間を教えてくれます。問題は、時刻が 23:45 のような場合、オプションが 00:10 から開始され、$j 変数に基づいてループすることです。
これが私がやりたいことです: $open_time から $close_time までの 5 分間隔でオプションのリストをください。現在の時刻 ($timeNow) が $open_time より大きい場合、$open_time を $timeNow に設定して、最初のオプションとして表示します。このループは $close_time までのみ実行してください。
これが明確であることを願っています。あなたの助けに感謝 :)
コードは次のとおりです。
function selectTimesofDay(){
$output = "";
$now = date('G:i ', time()); // time now
$timeNow = strtotime($now); // strtotime now
$next_five = ceil($timeNow / 300) * 300; // get next 5 minute
// time now rounded to next 10 minute
$round5minNow = date('G:i', strtotime('+15 minutes',$next_five));
$open_time = strtotime('17:00');
$close_time = strtotime('23:59');
// in the middle of working hours, time sets to current
if($timeNow >= $open_time && $timeNow < $close_time){
$open_time = strtotime($round5minNow);
}
$time_diff = round(($close_time - $open_time)/60) ;
if(date('l') == 'Friday'){
$j = ($time_diff/5)+11; // working hours extended untill 1:00 AM
} else{
$j = ($time_diff/5)-1; // working hours untill 12:00 AM
}
for($i = 0; $i <= $j; $i++){
$b = $i*5;
$data = date('l')." - ".date("H:i", strtotime('+'.$b.' minutes', $open_time));
$output .= "<option value=\"{$data}\">";
$output .= $data;
$output .= "</option>";
}
return $output;
}