この記事ではphpで指定日までの残り日数を計算する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
関数カウントデイ($d) { $olddate = substr($d, 4); $newdate = 日付(Y) ."".$olddate; $nextyear = date(Y)+1 ."".$olddate; if($newdate > date("Y-m-d")) { $start_ts = strtotime($newdate); $end_ts = strtotime(date("Y-m-d")); $diff = $end_ts - $start_ts; $n = ラウンド($diff / 86400); $return = substr($n, 1); return $return; } その他 { $start_ts = strtotime($nextyear); $end_ts = strtotime(date("Y-m-d")); $diff = $end_ts - $start_ts; $n = ラウンド($diff / 86400); $return = substr($n, 1); return $return; } } |