|
IntlDateFormatter::formatObjectdatefmt_format_objectFormats 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
<?phpThe 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
|