ctype_alpha_error.phpt   [plain text]


--TEST--
Test ctype_alpha() function : error conditions - Incorrect number of arguments
--FILE--
<?php
/* Prototype  : bool ctype_alpha(mixed $c)
 * Description: Checks for alphabetic character(s) 
 * Source code: ext/ctype/ctype.c
 */

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

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

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

//Test ctype_alpha with one more than the expected number of arguments
echo "\n-- Testing ctype_alpha() function with more than expected no. of arguments --\n";
$c = 1;
$extra_arg = 10;
var_dump( ctype_alpha($c, $extra_arg) );
?>
===DONE===
--EXPECTF--
*** Testing ctype_alpha() : error conditions ***

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

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

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

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