Home >php教程 >PHP源码 >PHP 显示周日到周六 根据唐国伟代码改编

PHP 显示周日到周六 根据唐国伟代码改编

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-06 09:32:331020browse
跳至 [2] [全屏预览]
<html>
<header>
<meta charset="utf-8">
<style>
box{  
float:left;
margin-right:15px;
font-family:"楷体";
}
#Today{ 
	color:#F00;
	border-bottom:solid #00f 3px;
}
</style>
</header>
<body>
<?php
//设置好地方时区: 时区为亚洲上海,即中国地方时,这是必须的!
date_default_timezone_set('Asia/shanghai');
$week = date('w'); //w-数字型的星期几,如:"0"(星期日)至"6"(星期六)
//创建中文星期几的数组
$week_cn=array('周日','周一','周二','周三','周四','周五','周六');
//调用方法 time() 获取当前地方时间的 Unix 时间戳(单位:秒)
//星期日的时间为 time()-$week*86400, 它是 循环体变量 $time 的初始值 
//每次循环结束,更新变量时,$time 增加一天的时间:86400秒
for($i=0,$time=time()-$week*86400; $i<7;$i++, $time+=86400){
	if ($i==$week) 
		echo '<box id="Today"';
		else
		echo '<box'; 
    echo '>'.$week_cn[$i]; //输出中文的星期几
//输出对应的月份和号(日)
	echo '<br>'.date('m-d',$time).'</box>'; 
	}
?>
</body>
</html>
    
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn