位置: 编程技术 - 正文
推荐整理分享PHP:strptime()的用法_Date Time函数(php stl),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php stl,php timer,php的strcmp,php中strtotime,php中strtotime,php中strtotime,php的strcmp,php strftime,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 5 >= 5.1.0)
strptime — 解析由 strftime() 生成的日期/时间
说明 array strptime ( string $date , string $format )strptime() 返回一个将 date 解析后的数组,如果出错返回 FALSE。
月份和星期几的名字以及其它与语种有关的字符串对应于 setlocale()设定的当前区域(LC_TIME)。
参数date(string)
被解析的字符串(例如从 strftime() 返回的)
format(string)date 所使用的格式(例如同 strftime() 中所使用的相同)。
更多有关格式选项的信息见 strftime() 页面。
返回值返回一个数组 或者在失败时返回 FALSE
数组中包含以下单元 键名 说明 tm_sec 当前分钟内的秒数(0-) tm_min 当前小时内的分钟数(0-) tm_hour 午夜起的小时数(0-) tm_mday 月份中的第几天(1-) tm_mon 自一月起过了几个月(0-) tm_year 自 年起过了几年 tm_wday 自星期天起过了几天(0-6) tm_yday 本年自一月一日起过了多少天(0-) unparsed date 中未能通过指定的 format 识别的部分
范例
Example #1 strptime() 例子
<?php$format='%d/%m/%Y%H:%M:%S';$strf=strftime($format);echo"$strfn";print_r(strptime($strf,$format));?>以上例程的输出类似于:
注释Note: 此函数未在 Windows 平台下实现。
Note:
Internally, this function calls the strptime() function provided by the systems C library. This function can exhibit noticeably different behaviour across different operating systems. The use of date_parse_from_format(), which does not suffer from these issues, is recommended on PHP 5.3.0 and later.
Note:
"tm_sec" includes any leap seconds (currently upto 2 a year). For more information on leap seconds, see the »Wikipedia article on leap seconds.
Note:
Prior to PHP 5.2.0, this function could return undefined behaviour. Notably, the "tm_sec", "tm_min" and "tm_hour" entries would return undefined values.
参见checkdate() - 验证一个格里高里日期 strftime() - 根据区域设置格式化本地时间/日期 date_parse_from_format() - Get info about given date formatted according to the specified format DateTime::createFromFormat() - Returns new DateTime object formatted according to the specified format
PHP:mktime()的用法_Date Time函数 mktime(PHP4,PHP5)mktime取得一个日期的Unix时间戳说明intmktime([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]
PHP:microtime()的用法_Date Time函数 microtime(PHP4,PHP5)microtime返回当前Unix时间戳和微秒数说明mixedmicrotime([bool$get_as_float])microtime()当前Unix时间戳以及微秒数。本函数仅在支持gettimeofday()系统调
PHP:localtime()的用法_Date Time函数 localtime(PHP4,PHP5)localtime取得本地时间说明arraylocaltime([int$timestamp=time()[,bool$is_associative=false]])localtime()函数返回一个数组,其结构和C函数调用返回的完全一
标签: php stl
本文链接地址:https://www.jiuchutong.com/biancheng/287359.html 转载请保留说明!友情链接: 武汉网站建设