5 lines
79 B
PHP
5 lines
79 B
PHP
|
|
<?php
|
||
|
|
echo date('Y-m-d', time())."\n";
|
||
|
|
echo date('l, F j, Y', time())."\n";
|
||
|
|
?>
|