完全代码如下:
世界时钟
form{
margin:0px;
padding:0px;
}
td{
text-align:center;
width:40px;
}
header("Content-Type:text/html;charset=GB2312"); //设置字符集
function show_clock($zonetime) { //显示时钟函数
$Year = date('Y');
$Month = date('m');
$Day = date('d');
$Hour = date('H');
$Min = date('i');
$Sec = date('s');
$clock = array('年','月','日','时','分','秒');
//$time = array($Year,$Month,$Day,$Hour,$Min,$Sec);
echo '';echo ''.$zonetime.' | ';echo '';$i = 0;
for ($i=0;$i<6;$i++){
echo '
'.$clock[$i].' | ';}
echo '
';echo '
'.$Year.' | ';echo '
'.$Month.' | ';echo '
'.$Day.' | ';echo '
'.$Hour.' | ';echo '
'.$Min.' | ';echo '
'.$Sec.' | ';echo '
'; echo '
'; }
show_clock('北京时间');
if(function_exists(date_default_timezone_set)){
date_default_timezone_set('America/New_York');
}
show_clock('纽约时间');
if(function_exists(date_default_timezone_set)){
date_default_timezone_set('Australia/West');
}
show_clock('澳大利亚时间');
if(function_exists(date_default_timezone_set)){
date_default_timezone_set('Europe/London');
}
show_clock('伦敦时间');
if(function_exists(date_default_timezone_set)){
date_default_timezone_set('Europe/Paris');
}
show_clock('巴黎时间');
if(function_exists(date_default_timezone_set)){
date_default_timezone_set('Japan');
}
show_clock('日本时间');
?>
效果如下:
澳大利亚时间 |
年 | 月 | 日 | 时 | 分 | 秒 |
2011 | 07 | 26 | 11 | 24 | 56 |
阅读(880) | 评论(0) | 转发(0) |