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

php日期时间函数

时间:2017-09-26 23:29:23      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:转化   php日期时间   基本语法   date   strtotime   get   string   rto   格式   

日期时间函数
① time函数
主要功能:返回格林制时间(1970-1-1 0:0:0)到当前时间的秒数(时间戳)
② date函数
基本语法:
string date ( string $format [, int $timestamp ] )
主要功能:返回格式化后的时间格式
参数说明:
$format:要格式化的参数(如Y-m-d H:i:s)
Y(Year)缩写:年份
m(month)缩写:月份
d(day)缩写:日
H(Hour)缩写:小时
i(minute)缩写,但是为了防止与(month)冲突,所以采用i代表分钟
s(seconds)缩写,秒
$timestamp :时间戳
③ strtotime函数
基本语法:
int strtotime ( string $time [, int $now = time() ] )
主要功能:将日期格式转化生成unix时间戳
参数说明:
$time:要转化的日期格式
$now:可选参数,默认显示当前时间的时间戳
④ microtime函数
基本语法:
mixed microtime ([ bool $get_as_float ] )
主要功能:返回当前时间的unix时间戳与微秒数
参数说明:
$get_as_float :布尔类型的值,如果此值为true,则返回一个float浮点数

php日期时间函数

标签:转化   php日期时间   基本语法   date   strtotime   get   string   rto   格式   

原文地址:http://www.cnblogs.com/header/p/7599445.html

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