Skip to content

Instantly share code, notes, and snippets.

@juniorb2ss
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juniorb2ss/0ff0df566aa6a75c379f to your computer and use it in GitHub Desktop.
Save juniorb2ss/0ff0df566aa6a75c379f to your computer and use it in GitHub Desktop.
<?php
$now = DateTime::createFromFormat('d/m/Y', '21/06/2014');
$tomorrow = DateTime::createFromFormat('d/m/Y', '22/06/2014');
var_dump($now == $tomorrow);
var_dump($now < $tomorrow);
var_dump($now > $tomorrow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment