这篇文章主要为大家详细介绍了php date()日期时间函数的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编小韵来看看吧!
1,年-月-日代码如下:
<?php
//四海网网 Www.q1010.com
/*
@author hills
@tencentqq 3303911
@web www.abzz.net
@email hackhgs@qq.com
@blog blog.abzz.net
@mobiletelethone 1345-2626-567
@filecreate 2009-12-25-13:20,copyright hills
*/
$utc=date(”T”);
if ($utc==”UTC”)
$h=date(”h”)+8;
$dateshow=date(”Y-m-d “.$h.”:i:s”);
function rn()
{
if (date(”L”)==1)
{
echo “是”;
}
else
{
echo “否”;
}
}
$weeks=date(”l”);
$year=date(”W”);
$dayyear=date(”z”);
$weeksmemberic=date(”t”);
?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”x-ua-compatible” content=”IE=EmulateIE7″ />
<meta http-equiv=”content-language” content=”zh-cn” />
<meta http-equiv=”content-type” content=”text/html; charset=utf-8″ />
<meta http-equiv=”keywords” content=”date()函数” />
<meta http-equiv=”description” content=”date()函数” />
<meta http-equiv=”author” content=”hills” />
<title>date()函数</title>
<link href=”css/default.css” rel=”stylesheet” media=”all” type=”text/css” />
</head>
<body>
<div>
<div>
<ul>
<li><?php echo “时区:”.$utc;?></li>
<li><?php echo “当前时间(+8):”.$dateshow;?></li>
<li><?php echo (”是否闰年:”); rn();?></li>
<li><?php echo “星期:”.$weeks;?></li>
<li><?php echo “今天是全年中第:”.$year.”周”;?></li>
<li><?php echo “今天是今年的第”.$dayyear.”天”;?></li>
<li><?php echo “本月一共有”.$weeksmemberic.”天”;?></li>
</ul>
</div>
</div>
</body>
</html>
本文来自:http://www.q1010.com/173/13567-0.html
注:关于php date()日期时间函数的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。