|
IntlDateFormatter::setPatterndatefmt_set_patternSet the pattern used for the IntlDateFormatter DescriptionObject oriented style
public bool IntlDateFormatter::setPattern
( string
$pattern
)Procedural style
bool datefmt_set_pattern
( IntlDateFormatter
$fmt
, string $pattern
)Set the pattern used for the IntlDateFormatter. Parameters
Return Values
Returns ExamplesExample #1 datefmt_set_pattern example
<?php Example #2 OO example
<?php The above example will output: pattern of the formatter is : MM/dd/yyyy First Formatted output with pattern is 12/31/1969 Now pattern of the formatter is : yyyymmdd hh:mm:ss z Second Formatted output with pattern is 19690031 04:00:00 PST See Also
|