mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
11 lines
274 B
PHP
11 lines
274 B
PHP
--TEST--
|
|
Bug #44780 (some time zone offsets not recognized by timezone_name_from_abbr)
|
|
--FILE--
|
|
<?php
|
|
var_dump( timezone_name_from_abbr("", 5.5*3600, 0) );
|
|
var_dump( timezone_name_from_abbr("", 28800, 0) );
|
|
?>
|
|
--EXPECT--
|
|
string(12) "Asia/Kolkata"
|
|
string(13) "Asia/Shanghai"
|