PHP date_create_from_format() 函数
PHP date_create_from_format() 函数
实例
返回一个根据指定格式进行格式化的新的 DateTime 对象:
<?php
$date=date_create_from_format("j-M-Y","15-Mar-2013");
?>
$date=date_create_from_format("j-M-Y","15-Mar-2013");
?>
运行实例 »
定义和用法
date_create_from_format() 函数返回一个根据指定格式进行格式化的新的 DateTime 对象。
语法
date_create_from_format(format,time,timezone);
参数 | 描述 |
---|---|
format | 必需。规定要使用的格式。format 参数字符串可以使用下列的字符:
|
time | 必需。规定一个日期/时间字符串。NULL 表示当前的日期/时间。 |
timezone | 可选。规定 time 的时区。默认为当前时区。 |
技术细节
返回值: | 如果成功则返回 DateTime 对象,如果失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.3+ |
PHP Date/Time 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 数组排序
- PHP While 循环
- PHP 多维数组
- PHP 错误处理
- PHP 过滤器
- PHP array_fill() 函数
- PHP array_fill_keys() 函数
- PHP array_map() 函数
- PHP array_rand() 函数
- PHP array_reverse() 函数
- PHP array_udiff() 函数
- PHP array_uintersect_assoc() 函数
- PHP natsort() 函数
- PHP reset() 函数
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Math 函数