summaryrefslogtreecommitdiff
path: root/ext/intl/tests/calendar_getErrorMessage_error.phpt
blob: cc52449d9431f0b866652376b4390267a8784bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--TEST--
IntlCalendar::getErrorMessage(): bad arguments
--INI--
date.timezone=Atlantic/Azores
--SKIPIF--
<?php
if (!extension_loaded('intl'))
	die('skip intl extension not enabled');
--FILE--
<?php
ini_set("intl.error_level", E_WARNING);

$c = new IntlGregorianCalendar(NULL, 'pt_PT');

var_dump($c->getErrorMessage(array()));

var_dump(intlcal_get_error_message(null));
--EXPECTF--
Warning: IntlCalendar::getErrorMessage() expects exactly 0 parameters, 1 given in %s on line %d

Warning: IntlCalendar::getErrorMessage(): intlcal_get_error_message: bad arguments in %s on line %d
bool(false)

Fatal error: Uncaught TypeError: Argument 1 passed to intlcal_get_error_message() must be an instance of IntlCalendar, null given in %s:%d
Stack trace:
#0 %s(%d): intlcal_get_error_message(NULL)
#1 {main}
  thrown in %s on line %d