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

php获取当前时间和转换格式

时间:2016-10-26 13:44:07      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:ext   mat   指定   next   strong   英文   for   form   返回   

## 获取时间和转换格式
```
//1.time():返回当前时间的Unix时间戳
$stimestamp = time();
$date = date("Y-m-d h:i:sa",$stimestamp)

//2.mktime():返回一个指定日期的Unix时间戳
//语法:mktime(hour,minute,second,month,day,year,is_dst);
$stimestamp = mktime(9,12,31,6,10,2016)
$date = date("Y-m-d h:i:sa",$stimestamp)

//3.date(formate,timestamp);返回时间戳对应的日期
$date = date("Y-m-d h:i:sa",$stimestamp)

//4.strtotime();函数将任何英文文本的日期或时间描述解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数)
//语法:strtotime(time,now);
strtotime(‘2014-09-10 11:01:46‘);
echo(strtotime("now") . "<br>");
echo(strtotime("15 October 1980") . "<br>");
echo(strtotime("+5 hours") . "<br>");
echo(strtotime("+1 week") . "<br>");
echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "<br>");
echo(strtotime("next Monday") . "<br>");
echo(strtotime("last Sunday"));
```

php获取当前时间和转换格式

标签:ext   mat   指定   next   strong   英文   for   form   返回   

原文地址:http://www.cnblogs.com/redirect/p/5999604.html

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