1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/intl/tests/timezone_getErrorMessage_error.phpt
Gustavo André dos Santos Lopes 5e65205a8f Initial checkin of calendar/timezone code.
2012-04-01 23:28:00 +01:00

24 lines
690 B
PHP

--TEST--
IntlTimeZone::getErrorMessage(): 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->getErrorMessage(array()));
var_dump(intltz_get_error_message(null));
--EXPECTF--
Warning: IntlTimeZone::getErrorMessage() expects exactly 0 parameters, 1 given in %s on line %d
Warning: IntlTimeZone::getErrorMessage(): intltz_get_error_message: bad arguments in %s on line %d
bool(false)
Catchable fatal error: Argument 1 passed to intltz_get_error_message() must be an instance of IntlTimeZone, null given in %s on line %d