LPMJ Example 3-16 (Click on the icon to view the source for copy and pasting)
<?php
$temp = "The date is ";
echo longdate($temp, time());

function longdate($text, $timestamp)
{
	return $text . date("l F jS Y", $timestamp);
}
?>