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

php中的time(),date(),mktime(),strtotime()

时间:2015-11-23 06:33:59      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:php   时间戳   

time():返回当前的Unix时间戳;

date():格式化一个本地的时间戳;

mktime(时,分,秒,月,日,年):取得一个日期的时间戳;

strtotime():将任何英文文本的日期时间描述解析为Unix时间戳

<?php

echo time();

echo date(‘Y-m-d H:i:s‘,time());

echo mktime(13,54,55,9,18,2015);

echo strtotime("now");

echo strtotime("10 September 2015");

echo strtotime("+1 day");

echo strtotime("+1 week");

echo strtotime("next Thursday");

echo strtotime("last Monday");



php中的time(),date(),mktime(),strtotime()

标签:php   时间戳   

原文地址:http://lei2015.blog.51cto.com/1404973/1715718

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