| 
<?php
 /*
 Date Manager Class
 Copyright (C) 2004  Neil Morgan
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 
 Author's details:
 Name: Neil Morgan
 Email: [email protected]
 
 Create and manipulate dates and times
 Algorithm implemented here was found at various sites on the web
 Try a GOOGLE search for "Julian Date" or "Julian Date Algorithm"
 
 NOTE: All method parameters to have UK format DMY NOT US format MDY
 However, returned date can be either DMY or MDY
 
 
 */
 
 include_once('date.inc.php');
 
 $today = new nmDate();
 echo "Today: ".$today->GetDateDMY()."<br>";
 echo "Julian: ".$today->Julian."<br><br>";
 
 $today->AddMonths(1);
 echo "Next Month: ".$today->GetDateDMY()."<br>";
 echo "Julian: ".$today->Julian."<br><br>";
 
 $today->AddYears(1);
 echo "Next Year: ".$today->GetDateDMY()."<br>";
 echo "Julian: ".$today->Julian."<br><br>";
 
 echo "Seconds since Millennium: ".$today->GetDiff('01/01/2000','00:00:00')."<br><br>";
 
 
 ?>
 
 |