mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00

To avoid duplicate type checks. In debug builds arginfo is still checked and will generate an assertions if the function doesn't subsequently throw an exception. Some test results change due to differences in zpp and arginfo error messages.
23 lines
730 B
PHP
23 lines
730 B
PHP
--TEST--
|
|
IntlTimeZone::getDisplayName(): errors
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl'))
|
|
die('skip intl extension not enabled');
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
|
|
$tz = IntlTimeZone::createTimeZone('Europe/Lisbon');
|
|
var_dump($tz->getDisplayName(false, -1));
|
|
|
|
var_dump(intltz_get_display_name(null, IntlTimeZone::DISPLAY_SHORT, false, 'pt_PT'));
|
|
--EXPECTF--
|
|
Warning: IntlTimeZone::getDisplayName(): intltz_get_display_name: wrong display type in %s on line %d
|
|
bool(false)
|
|
|
|
Fatal error: Uncaught TypeError: intltz_get_display_name() expects parameter 1 to be IntlTimeZone, null given in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): intltz_get_display_name(NULL, 1, false, 'pt_PT')
|
|
#1 {main}
|
|
thrown in %s on line %d
|