■例1
if(time()>=strtotime(“2011-11-20”)){
//処理
}
if(time()>=strtotime(“2011-11-20”)){
//処理
}
■例2
if(time()>=mktime(0,0,0,11,20,2011)){ // 時,分,秒,月,日,年
//処理
}
■例3(関数を使用)
function overDate($dt){
return time()>=mktime(
substr($dt,11,2),
substr($dt,14,2),
substr($dt,17,2),
substr($dt,5,2),
substr($dt,8,2),
substr($dt,0,4)
);
}
RELATED
-
2023年12月13日
-
2023年8月24日
-
2023年8月1日
-
2021年8月25日
コメントを残す