PHP
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

date_parse> <date_offset_get
Last updated: Fri, 30 Jan 2009

view this page in

date_parse_from_format

(No version information available, might be only in CVS)

date_parse_from_formatGet info about given date

説明

array date_parse_from_format ( string $format , string $date )

Returns associative array with detailed info about given date.

パラメータ

format

Format accepted by date() with some extras.

date

String representing the date.

返り値

Returns associative array with detailed info about given date.

例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] => -60
    [is_dst] => 
)



add a note add a note User Contributed Notes
date_parse_from_format
There are no user contributed notes for this page.

date_parse> <date_offset_get
Last updated: Fri, 30 Jan 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites