PHP strptime() 函数
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 参考手册
相关文章
- PHP 变量
- PHP 字符串
- PHP 魔术常量
- PHP 文件上传
- PHP 发送电子邮件
- PHP array() 函数
- PHP array_chunk() 函数
- PHP array_diff_key() 函数
- PHP array_diff_uassoc() 函数
- PHP array_intersect_key() 函数
- PHP array_key_exists() 函数
- PHP array_search() 函数
- PHP array_udiff() 函数
- PHP array_udiff_assoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP key() 函数
- PHP krsort() 函数
- PHP pos() 函数
- PHP Libxml 函数