J'ai un horodatage dans le format suivant (qui peut facilement être changé grâce aux beautés de PHP!).
2011-02-12 14:44:00
Quel est le moyen le plus simple et le plus rapide de vérifier si cet horodatage a été pris aujourd'hui?
Je pense:
date('Ymd') == date('Ymd', strtotime($timestamp))
if (date('Y-m-d') == date('Y-m-d', strtotime('2011-02-12 14:44:00'))) {
// is today
}
Voici ce que j'utilise pour ce genre de tâche:
/** date comparator restricted by $format.
@param {int/string/Datetime} $timeA
@param {int/string/Datetime} $timeB
@param {string} $format
@returns : 0 if same. 1 if $timeA before $timeB. -1 if after */
function compareDates($timeA,$timeB,$format){
$dateA=$timeA instanceof Datetime?$timeA:(is_numeric($timeA)?(new \Datetime())->setTimestamp($timeA):(new \Datetime("".$timeA)));
$dateB=$timeB instanceof Datetime?$timeB:(is_numeric($timeB)?(new \Datetime())->setTimestamp($timeB):(new \Datetime("".$timeB)));
return $dateA->format($format)==$dateB->format($format)?0:($dateA->getTimestamp()<$dateB->getTimestamp()?1:-1);
}
jour de comparaison: $ format = 'Y-m-d'.
compare month: $ format = 'Y-m'.
etc...
dans ton cas :
if(compareDates("now",'2011-02-12 14:44:00','Y-m-d')===0){
// do stuff
}
$offset = date('Z'); //timezone offset in seconds
if (floor(($UNIX_TIMESTAMP + $offset) / 86400) == floor((mktime(0,0,0) + $offset) / 86400)){
echo "today";
}
Je préfère comparer les horodatages (plutôt que les chaînes de date), je l'utilise donc pour vérifier aujourd'hui.
$dayString = "2011-02-12 14:44:00";
$dayStringSub = substr($dayString, 0, 10);
$isToday = ( strtotime('now') >= strtotime($dayStringSub . " 00:00")
&& strtotime('now') < strtotime($dayStringSub . " 23:59") );
Fiddle: http://ideone.com/55JBku
(date('Ymd') == gmdate('Ymd', $db['time']) ? 'today' : '')