summaryrefslogtreecommitdiff
path: root/ext/intl/tests/calendar_getType_error.phpt
blob: 95499a60acea966b0ea6aa8d53c9bb7320ea279e (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
29
30
31
32
33
34
35
36
--TEST--
IntlCalendar::getType(): 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->getType(1));

var_dump(intlcal_get_type($c, 1));
var_dump(intlcal_get_type(1));

--EXPECTF--

Warning: IntlCalendar::getType() expects exactly 0 parameters, 1 given in %s on line %d

Warning: IntlCalendar::getType(): intlcal_get_type: bad arguments in %s on line %d
bool(false)

Warning: intlcal_get_type() expects exactly 1 parameter, 2 given in %s on line %d

Warning: intlcal_get_type(): intlcal_get_type: bad arguments in %s on line %d
bool(false)

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