mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
14 lines
316 B
PHP
14 lines
316 B
PHP
--TEST--
|
|
IntlTimeZone::createEnumeration(): errors
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
|
|
var_dump(IntlTimeZone::createEnumeration(array()));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: IntlTimeZone::createEnumeration(): intltz_create_enumeration: invalid argument type in %s on line %d
|
|
bool(false)
|