date_parse_from_format
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
date_parse_from_format — Get info about given date formatted according to the specified format
說明
date_parse_from_format(string 
  $format, string $datetime): arrayReturns associative array with detailed info about given date/time.
參數
- 
format
- 
      Format accepted by DateTime::createFromFormat(). 
- 
datetime
- 
      String representing the date/time. 
返回值
Returns associative array with detailed info about given date/time.
更新日誌
| 版本 | 說明 | 
|---|---|
| 7.2.0 | The zoneelement of the returned array represents
       seconds instead of minutes now, and its sign is inverted. For instance-120is now7200. | 
範例
示例 #1 date_parse_from_format() example
<?php
$date = "6.1.2009 13:00+01:00";
print_r(date_parse_from_format("j.n.Y H:iP", $date));
?>
以上例程會輸出:
Array
(
    [year] => 2009
    [month] => 1
    [day] => 6
    [hour] => 13
    [minute] => 0
    [second] => 0
    [fraction] => 
    [warning_count] => 0
    [warnings] => Array
        (
        )
    [error_count] => 0
    [errors] => Array
        (
        )
    [is_localtime] => 1
    [zone_type] => 1
    [zone] => 3600
    [is_dst] => 
)