No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

IntlCalendar::fromDateTime

(PHP 5 >= 5.5.0, PHP 7, PECL >= 3.0.0a2)

IntlCalendar::fromDateTimeCreate an IntlCalendar from a DateTime object or string

Description

Object oriented style

public static IntlCalendar::fromDateTime ( mixed $dateTime ) : IntlCalendar

Procedural style

intlcal_from_date_time ( mixed $dateTime ) : IntlCalendar

Creates an IntlCalendar object either from a DateTime object or from a string from which a DateTime object can be built.

The new calendar will represent not only the same instant as the given DateTime (subject to precision loss for dates very far into the past or future), but also the same timezone (subject to the caveat that different timezone databases will be used, and therefore the results may differ).

PHP: IntlCalendar::fromDateTime - Manual Home of Manuel PHP  Contents Haut

Return Values

The created IntlCalendar object or NULL in case of failure. If a string is passed, any exception that occurs inside the DateTime constructor is propagated.

PHP: IntlCalendar::fromDateTime - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 IntlCalendar::fromDateTime()

<?php
ini_set
('date.timezone''Europe/Lisbon');

//same as IntlCalendar::fromDateTime(new DateTime(...))
$cal1 IntlCalendar::fromDateTime('2013-02-28 00:01:02 Europe/Berlin');

//Note the timezone is Europe/Berlin, not the default Europe/Lisbon
echo IntlDateFormatter::formatObject($cal1'yyyy MMMM d HH:mm:ss VVVV''de_DE'), "\n";

The above example will output:

2013 Februar 28 00:01:02 Deutschland Zeit

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph