码迷,mamicode.com
首页 > Web开发 > 详细

PHP日期与时间

时间:2016-03-24 17:58:56      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

1、date

string date ( string $format [, int $timestamp ] )

 

                echo date(‘Y‘) . ‘<br/>‘;// 2016
echo date(‘y‘) . ‘<br/>‘;// 16

echo ‘------<br/>‘;

echo date(‘m‘) . ‘<br/>‘;// 03
echo date(‘M‘) . ‘<br/>‘;// Mar, 大写M表示月份的3个缩写字符
echo date(‘n‘) . ‘<br/>‘;// 3,
echo date(‘F‘) . ‘<br/>‘;// March, 月份的英文全写

echo ‘------<br/>‘;

echo date(‘d‘) . ‘<br/>‘;// 09
echo date(‘j‘) . ‘<br/>‘;// 9
echo date(‘S‘) . ‘<br/>‘;// th,表示日期的后缀。

echo ‘------<br/>‘;

echo date(‘g‘) . ‘<br/>‘;// 4, 12小时制,前不带0
echo date(‘G‘) . ‘<br/>‘;// 16, 24小时制,带前导0
echo date(‘H‘) . ‘<br/>‘;// 16,24小时制,前不带0
echo date(‘h‘) . ‘<br/>‘;// 01, 12小时制,带前导0

echo ‘------<br/>‘;

echo date(‘i‘) . ‘<br/>‘;// 42,分钟

echo ‘------<br/>‘;

echo date(‘s‘) . ‘<br/>‘;// 26,秒
echo date(‘S‘) . ‘<br/>‘;// th,表示日期的后缀。

echo ‘------<br/>‘;

echo date(‘a‘) . ‘<br/>‘;// pm,小写的am(上午)pm(下午)
echo date(‘A‘) . ‘<br/>‘;// PM,大写

echo ‘------<br/>‘;

echo date(‘l‘) . ‘<br/>‘;// Thursday,当天是星期几的英文全写(Tuesday)
echo date(‘L‘) . ‘<br/>‘;// 1,闰年则返回1否则0
echo date(‘D‘) . ‘<br/>‘;// Thu,表示星期几的3个字符缩写(Tue)


2、mktime()  

    ??mktime为指定时间生成时间戳,原型:

int mktime ([ int $hour = date("H") [, int $minute = date("i") [, int $second = date("s") [,int $month = date("n") [, int $day = date("j") [, int $year = date("Y") [, int $is_dst = -1]]]]]]] )

    ?

$tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
echo "明天是 ".date("Y/m/d", $tomorrow);

3、strtotime()

$d=strtotime("10:38pm April 15 2015");
echo "创建日期是 " . date("Y-m-d h:i:sa", $d);

$d=strtotime("tomorrow");
echo date("Y-m-d h:i:sa", $d) . "<br>";

$d=strtotime("next Saturday");
echo date("Y-m-d h:i:sa", $d) . "<br>";

$d=strtotime("+3 Months");
echo date("Y-m-d h:i:sa", $d) . "<br>";

?

 

PHP日期与时间

标签:

原文地址:http://www.cnblogs.com/orlion/p/5316242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!