首页 > 开发 > PHP > 正文

for的高级运用

2024-05-04 23:02:22
字体:
来源:转载
供稿:网友

 


<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>

 



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表