More than 5 years have passed since last update.
いつも忘れちゃうのでメモ。
date.php
$today = date("Y/m/d");
$target_day = "2014/06/10";
if(strtotime($today) === strtotime($target_day)){
echo "ターゲット日付は今日です";
}else if(strtotime($today) > strtotime($target_day)){
echo "ターゲット日付は過去です";
}else{
echo "ターゲット日付は未来です";
}
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin