8月 062012
<?php
$timestamp = time();
$year = date(‘Y’,$timestamp);
$month = date(‘m’,$timestamp);
$day = date(‘d’,$timestamp);
print “<br />”;
print $year.”年”;
print $month.”月”;
print $day.”日”;
?>
<?php
$timestamp = time();
$year = date(‘Y’,$timestamp);
$month = date(‘m’,$timestamp);
$day = date(‘d’,$timestamp);
print “<br />”;
print $year.”年”;
print $month.”月”;
print $day.”日”;
?>
Sorry, the comment form is closed at this time.