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

10 lines
164 B
PHP

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