欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中的time(),date(),mktime(),strtotime()_PHP教程

程序员文章站 2022-05-13 17:25:49
...

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

time():返回当前的Unix时间戳;
date():格式化一个本地的时间戳;
mktime(时,分,秒,月,日,年):取得一个日期的时间戳;
strtotime():将任何英文文本的日期时间描述解析为Unix时间戳
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");

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1074129.htmlTechArticlephp中的time(),date(),mktime(),strtotime() time():返回当前的Unix时间戳; date():格式化一个本地的时间戳; mktime(时,分,秒,月,日,年):取得一个...
相关标签: php中的time(