|
IntlCalendar::toDateTimeConvert an IntlCalendar into a DateTime object BeschreibungObjektorientierter Stil
public DateTime IntlCalendar::toDateTime
( void
)
Prozeduraler Stil
DateTime intlcal_to_date_time
( IntlCalendar
$cal
)Create a DateTime object that represents the same instant (up to second precision, with a rounding error of less than 1 second) and has an analog timezone to this object (the difference being DateTimeʼs timezone will be backed by PHPʼs timezone while IntlCalendarʼs timezone is backed by ICUʼs). Parameter-Liste
Rückgabewerte
A DateTime object with the same timezone as this
object (though using PHPʼs database instead of ICUʼs) and the same time,
except for the smaller precision (second precision instead of millisecond).
Returns Beispiele
Beispiel #1 IntlCalendar::toDateTime
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe:
DateTime Object
(
[date] => 2013-07-02 00:29:13
[timezone_type] => 3
[timezone] => Europe/Lisbon
)
Siehe auch
|