- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP strptime() 函数
实例
解析由 strftime() 生成的时间/日期:
<?php
$format="%d/%m/%Y %H:%M:%S";
$strf=strftime($format);
echo("$strf");
print_r(strptime($strf,$format));
?>
$format="%d/%m/%Y %H:%M:%S";
$strf=strftime($format);
echo("$strf");
print_r(strptime($strf,$format));
?>
定义和用法
strptime() 函数解析由 strftime() 生成的时间/日期。
注意:该函数不能在 Windows 平台下实现!
语法
strptime(date,format);
参数 | 描述 |
---|---|
date | 必需。要解析的字符串(例如:由 strftime() 返回的)。 |
format | 必须。规定日期中要使用的格式:
|
技术细节
返回值: | 如果成功该函数返回一个带有解析日期的数组。如果失败则返回 FALSE。
返回数组的键名含义如下所示:
|
---|---|
PHP 版本: | 5.1+ |
PHP Date/Time 参考手册
关注微信小程序
扫描二维码
程序员编程王