1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
archived-php-src/ext/intl/tests/calendar_fromDateTime_basic.phpt
Gina Peter Banyard c42e6d62d8 ext/intl: modernize tests (#19392)
This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
2025-08-06 23:33:48 +01:00

51 lines
1.0 KiB
PHP

--TEST--
IntlCalendar::fromDateTime(): basic test
--EXTENSIONS--
intl
--INI--
intl.default_locale=nl_NL
date.timezone=Europe/Lisbon
--FILE--
<?php
$cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00 Europe/Rome');
var_dump(
$cal->getTime(),
strtotime('2012-01-01 00:00:00 Europe/Rome') * 1000.,
$cal->getTimeZone()->getID(),
$cal->getLocale(1)
);
echo "\n";
$cal = IntlCalendar::fromDateTime(new DateTime('2012-01-01 00:00:00 PST'), "pt_PT");
var_dump(
$cal->getTime(),
strtotime('2012-01-01 00:00:00 PST') * 1000.,
$cal->getTimeZone()->getID(),
$cal->getLocale(1)
);
echo "\n";
$cal = intlcal_from_date_time(new DateTime('2012-01-01 00:00:00 +03:40'));
var_dump(
$cal->getTime(),
strtotime('2012-01-01 00:00:00 +03:40') * 1000.,
$cal->getTimeZone()->getID()
);
?>
--EXPECTF--
float(1325372400000)
float(1325372400000)
string(11) "Europe/Rome"
string(5) "nl_NL"
float(1325404800000)
float(1325404800000)
string(3) "PST"
string(5) "pt_PT"
float(1325362800000)
float(1325362800000)
string(%d) "GMT+03%S40"