summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_alnum_error.phpt
blob: ed67406fa8d5ef8fab657fb2dfe811fff9836450 (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
37
38
39
40
41
42
43
44
45
--TEST--
Test ctype_alnum() function : error conditions - Incorrect number of args
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/* Prototype  : bool ctype_alnum(mixed $c)
 * Description: Checks for alphanumeric character(s)
 * Source code: ext/ctype/ctype.c
 */

/*
 * Pass incorrect number of arguments to ctype_alnum() to test behaviour
 */

echo "*** Testing ctype_alnum() : error conditions ***\n";

$orig = setlocale(LC_CTYPE, "C");

// Zero arguments
echo "\n-- Testing ctype_alnum() function with Zero arguments --\n";
var_dump( ctype_alnum() );

//Test ctype_alnum with one more than the expected number of arguments
echo "\n-- Testing ctype_alnum() function with more than expected no. of arguments --\n";
$c = 1;
$extra_arg = 10;
var_dump( ctype_alnum($c, $extra_arg) );

setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--
*** Testing ctype_alnum() : error conditions ***

-- Testing ctype_alnum() function with Zero arguments --

Warning: ctype_alnum() expects exactly 1 parameter, 0 given in %s on line %d
NULL

-- Testing ctype_alnum() function with more than expected no. of arguments --

Warning: ctype_alnum() expects exactly 1 parameter, 2 given in %s on line %d
NULL
===DONE===