PHP date_create_from_format() 函數(shù)
PHP date_create_from_format() 函數(shù)
實(shí)例
返回一個(gè)根據(jù)指定格式進(jìn)行格式化的新的 DateTime 對象:
<?php
$date=date_create_from_format("j-M-Y","15-Mar-2013");
?>
$date=date_create_from_format("j-M-Y","15-Mar-2013");
?>
運(yùn)行實(shí)例 ?
定義和用法
date_create_from_format() 函數(shù)返回一個(gè)根據(jù)指定格式進(jìn)行格式化的新的 DateTime 對象。
語法
date_create_from_format(format,time,timezone);
參數(shù) | 描述 |
---|---|
format | 必需。規(guī)定要使用的格式。format 參數(shù)字符串可以使用下列的字符:
|
time | 必需。規(guī)定一個(gè)日期/時(shí)間字符串。NULL 表示當(dāng)前的日期/時(shí)間。 |
timezone | 可選。規(guī)定 time 的時(shí)區(qū)。默認(rèn)為當(dāng)前時(shí)區(qū)。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回 DateTime 對象,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.3+ |

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 多維數(shù)組
- PHP 錯(cuò)誤處理
- PHP 過濾器
- PHP array_fill() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP natsort() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Math 函數(shù)