<html>
<head>
<title>for的高级运用</title>
</head>
<body>
<?
/*
** 打印必要的说明文字
*/
print("<b>距离星期一还有几天?</b>/n");
print("<ol>/n");
for($currentdate = date("u"); //定义$currentdate时间格式
date("l", $currentdate) != "monday"; //判断是不是当前系统时间是monday
$currentdate += (60 * 60 * 24))//当前时间加上1天
{
/*
** 打印时间名称
*/
print("<li>" . date("l", $currentdate) . "/n");
}
print("</ol>/n");
?>
</body>
</html>
新闻热点
疑难解答