<?php
if (!class_exists('DateTime') ) {
die('Feature not available yet');
}
echo "Same date:\n";
$a = new DateTime('2015-01-31 01:23:45 UTC');
$b = new DateTime('2015-01-31 02:23:45 Europe/Paris');
var_dump($a, $b, $a<$b, $a==$b, $a>$b);
echo "\n";
echo "First greater than second:\n";
$a = new DateTime('2015-01-31 01:23:46 UTC');
$b = new DateTime('2015-01-31 02:23:45 Europe/Paris');
var_dump($a, $b, $a<$b, $a==$b, $a>$b);
echo "\n";
echo "First less than second:\n";
$a = new DateTime('2015-01-31 01:23:45 UTC');
$b = new DateTime('2015-01-31 02:23:46 Europe/Paris');
var_dump($a, $b, $a<$b, $a==$b, $a>$b);
preferences:
76.18 ms | 405 KiB | 5 Q