PHP » GoLang |
login |
register |
about
|
GoLang IntlDateFormatter::formatObject
request it (437)
GoLang replacement for PHP's IntlDateFormatter::formatObject
[edit | history]
PHP IntlDateFormatter::formatObjectPHP original manual for IntlDateFormatter::formatObject [ show | php.net ]IntlDateFormatter::formatObjectdatefmt_format_object(PHP 5 >= 5.5.0, PHP 7, PECL intl >= 3.0.0) IntlDateFormatter::formatObject -- datefmt_format_object — Formats an object DescriptionObject oriented style
public static string IntlDateFormatter::formatObject
( object
$object
[, mixed $format = NULL
[, string $locale = NULL
]] )Procedural style
public static
string datefmt_format_object
( object
$object
[, mixed $format = NULL
[, string $locale = NULL
]] )This function allows formatting an IntlCalendar or DateTime object without first explicitly creating a IntlDateFormatter object. The temporary IntlDateFormatter that will be created will take the timezone from the passed in object. The timezone database bundled with PHP will not be used – ICU's will be used instead. The timezone identifier used in DateTime objects must therefore also exist in ICU's database. Parameters
Return Values
A string with result or Examples
Example #1 IntlDateFormatter::formatObject() examples
<?php The above example will output: default: 6 juin 2013 17:05:06 long $format (full): jeudi 6 juin 2013 17:05:06 heure d’été irlandaise array $format (none, full): 17:05:06 heure d’été irlandaise string $format (d 'of' MMMM y): 6 of June 2013 with DateTime: lunes, 9 de septiembre de 2013 09:09:09 Hora de verano de Europa central |
more
Recently updated
more
Most requested
more
Last requests
|