<html> <head><title>PHP TEST</title></head> <body> <p>日付要素の取得</p> <?php require_once("Calendar/Month.php"); require_once("Calendar/Second.php"); $month = new Calendar_Month(2007, 6); print("<p>"); print($month -> thisYear()."/"); print($month -> thisMonth()."/"); print($month -> thisDay()." "); print($month -> thisHour().":"); print($month -> thisMinute().":"); print($month -> thisSecond()); print("</p>"); $second = new Calendar_Second(2007, 6, 8, 13, 24, 52); print("<p>"); print($second -> thisYear()."/"); print($second -> thisMonth()."/"); print($second -> thisDay()." "); print($second -> thisHour().":"); print($second -> thisMinute().":"); print($second -> thisSecond()); print("</p>"); ?> </body> </html>