echo "The time is: ";echo date("l,d F"); // 显示星期、日期、月份echo " of the year ";echo date("Y, H:i"); // 显示年份、小时、分钟echo "hrs";?> 注意星期是小写的L,不是大写的i。注意老师给的格式中的空格。
echo "The time is:".date("l,d F")."of the year".date("Y,H:s")."hrs";