Add more testing

master
YandolsZX 3 years ago
parent a7f5d08910
commit c2f2114255
  1. 6
      index.php

@ -8,9 +8,13 @@ $now = new DateTime();
$zero = new DateTime('1442-01-01');
$diff = $now->diff($zero);
echo $diff->format('%a days'); // days since day zero
echo "<br/>"; //separator
$year = date("Y") - 579;
echo "Year " . $year;
$month = date("M") - 6;
$day = date("d") - 12;
// test sample date
echo "Year " . $year . "Month " . $month . "Day " . $day . "<br/>";
?>
Placeholder.

Loading…
Cancel
Save