|
IntlDateFormatter::createdatefmt_createIntlDateFormatter::__constructCreate a date formatter DescriptionObject oriented style
public
static
IntlDateFormatter IntlDateFormatter::create
( string
$locale
, int $datetype
, int $timetype
[, mixed $timezone = NULL
[, mixed $calendar = NULL
[, string $pattern = ""
]]] )Object oriented style (constructor)
public
IntlDateFormatter::__construct
( string
$locale
, int $datetype
, int $timetype
[, mixed $timezone = NULL
[, mixed $calendar = NULL
[, string $pattern = ""
]]] )Procedural style
IntlDateFormatter datefmt_create
( string
$locale
, int $datetype
, int $timetype
[, mixed $timezone = NULL
[, mixed $calendar = NULL
[, string $pattern = ""
]]] )Create a date formatter. Parameters
Return Values
The created IntlDateFormatter or Changelog
ExamplesExample #1 datefmt_create example
<?php Example #2 OO example
<?php The above example will output: First Formatted output is Wednesday, December 31, 1969 4:00:00 PM PT Second Formatted output is Mittwoch, 31. Dezember 1969 16:00 Uhr GMT-08:00 First Formatted output with pattern is 12/31/1969 Second Formatted output with pattern is 12/31/1969 See Also
|