Skip to content

Instantly share code, notes, and snippets.

@madeinnordeste
Created May 3, 2014 00:48
Show Gist options
  • Save madeinnordeste/bbd0f59cdf4667cbe832 to your computer and use it in GitHub Desktop.
Save madeinnordeste/bbd0f59cdf4667cbe832 to your computer and use it in GitHub Desktop.
PHP - Compare Dates
<?php
$date_a = strtotime('2010-11-25');
$date_b = strtotime('2012-11-25');
if($date_a >= $date_ab{
echo 'date_a >= date_b';
}else{
echo 'date_a < date_b';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment