Files
lpmj6/3/example3-15.php
T
2020-09-02 14:21:10 +01:00

10 lines
150 B
PHP

<?php
$temp = "The date is ";
echo $temp . longdate(time());
function longdate($timestamp)
{
return date("l F jS Y", $timestamp);
}
?>