mirror of
https://github.com/php/php-src.git
synced 2026-04-19 05:51:02 +02:00
14 lines
333 B
PHP
14 lines
333 B
PHP
--TEST--
|
|
IntlTimeZone::getEquivalentID(): errors
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
|
|
var_dump(IntlTimeZone::getEquivalentID("foo\x80", 0));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: IntlTimeZone::getEquivalentID(): intltz_get_equivalent_id: could not convert time zone id to UTF-16 in %s on line %d
|
|
bool(false)
|