PHPの練習コーナー [ トップへ ]
2002/10/27(日)の練習
NO.1
現在の日付と時刻は 2024/11/24 11:38:32 です。
[ソース]
現在の日付と時刻は
<?php
print (date("Y/m/d H:i:s"));
?>
です。
NO.2
現在の時刻:
24時間制では11時38分32秒です
12時間制では午前11時38分32秒です
[ソース]
<?php
$nowtime = getdate();
$hour24 = $nowtime["hours"];
$min = $nowtime["minutes"];
$sec = $nowtime["seconds"];
if ($hour24 < 12)
{
$ampm = "午前";
$hour12 = $hour24;
}
else
{
$ampm = "午後";
$hour12 = $hour24 - 12;
}
print ("現在の時刻:<br>\n");
printf ("24時間制では%02d時%02d分%02d秒です<br>\n", $hour24, $min, $sec);
printf ("12時間制では%s%02d時%02d分%02d秒です<br>\n", $ampm, $hour12, $min, $sec);
?>