<?php
echo
"When this page was loaded,\n"
;
echo
'It was then ',
date
('r'),
"\n"
;
echo
'The currend
date
was ',
date
('F j, Y'),
"\n"
;
echo
'The currend
date
was ',
date
('M j, Y'),
"\n"
;
echo
'The currend
date
was ',
date
('m/d/y'),
"\n"
;
echo
'The currend
date
was the ',
date
('jS \o\f M, Y'),
"\n"
;
echo
'The currend time was ',
date
('g:i:s A T'),
"\n"
;
echo
'The currend time was ',
date
('H:i:s O'),
"\n"
;
echo
date
('Y');
date
('L')?(
print
' is'):(
print
' is not');
echo
" a leap year\n"
;
echo
time ('U'),
" seconds had elapsed since January 1, 1970.\n"
;
?>