2024年11月26日

php日付時間曜日の操作 date

今日

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

明日

$manana = date('Y-m-d', strtotime('+1 day'));

今月末日

$estemes = date('Y-m');
$finaldeestemes = date($estemes.'-t');

2つの日付の日数差

$time1 = strtotime('2019-04-01');
$time2 = strtotime('2018-04-01');
$differece = ($time1 - $time2) / (60 * 60 * 24);

日付を日本語で表示

$fecha = '1999-10-10';
$dia = date("m月d日", strtotime($fecha));

曜日を日本語で表示

$fecha = '1999-10-10';
$week = array( "日", "月", "火", "水", "木", "金", "土" );
$diadesemana = $week[date("w", strtotime($fecha))];

日付条件分岐

wordpressの場合はcurrent_timeを使う
そうでない場合はdateを使う
if (current_time('Y-m-d H:i:s') < '2024-11-29 17:00:00') {
//その日以降非表示
} else{
//その日以降表示
}                                 

SQL

今日以降

 `date` >= "'.$hoy.'"

昨日以前

`date` < "'.$hoy.'"
Wish I could be Comic Sans ついにマイコンピューターでインターネットを始めたの
わたしはヨガマットデザイナー

fzfeed