|
IntlDateFormatter::getPatterndatefmt_get_patternGet the pattern used for the IntlDateFormatter DescriptionObject oriented style
public string IntlDateFormatter::getPattern
( void
)
Procedural style
string datefmt_get_pattern
( IntlDateFormatter
$fmt
)Get pattern used by the formatter. Parameters
Return ValuesThe pattern string being used to format/parse. ExamplesExample #1 datefmt_get_pattern example
<?php Example #2 OO example
<?php The above example will output: pattern of the formatter is : MM/dd/yyyy First Formatted output is 12/31/1969 Now pattern of the formatter is : yyyymmdd hh:mm:ss z Second Formatted output is 19690031 04:00:00 PST See Also
|