Searched refs:ctype_alnum (Results 1 – 11 of 11) sorted by relevance
2 Test ctype_alnum() function : error conditions - Incorrect number of args7 /* Prototype : bool ctype_alnum(mixed $c)13 * Pass incorrect number of arguments to ctype_alnum() to test behaviour16 echo "*** Testing ctype_alnum() : error conditions ***\n";21 echo "\n-- Testing ctype_alnum() function with Zero arguments --\n";22 var_dump( ctype_alnum() );24 //Test ctype_alnum with one more than the expected number of arguments28 var_dump( ctype_alnum($c, $extra_arg) );34 *** Testing ctype_alnum() : error conditions ***36 -- Testing ctype_alnum() function with Zero arguments --[all …]
2 Test ctype_alnum() function : basic functionality7 /* Prototype : bool ctype_alnum(mixed $c)12 echo "*** Testing ctype_alnum() : basic functionality ***\n";19 var_dump(ctype_alnum($c1));20 var_dump(ctype_alnum($c2));26 *** Testing ctype_alnum() : basic functionality ***
2 Test ctype_alnum() function : usage variations - octal and hexadecimal values7 /* Prototype : bool ctype_alnum(mixed $c)13 * Pass octal and hexadecimal values to ctype_alnum() to test behaviour16 echo "*** Testing ctype_alnum() : usage variations ***\n";27 var_dump(ctype_alnum($c));35 var_dump(ctype_alnum($c));43 *** Testing ctype_alnum() : usage variations ***
2 Test ctype_alnum() function : usage variations - different string values7 /* Prototype : bool ctype_alnum(mixed $c)13 * Pass different strings to ctype_alnum to test behaviour16 echo "*** Testing ctype_alnum() : usage variations ***\n";47 // loop through each element of $values to test behaviour of ctype_alnum()51 var_dump( ctype_alnum($value) );59 *** Testing ctype_alnum() : usage variations ***
2 Test ctype_alnum() function : usage variations - Different data types as $c arg7 /* Prototype : bool ctype_alnum(mixed $c)13 * Pass different data types as $c argument to ctype_alnum() to test behaviour16 echo "*** Testing ctype_alnum() : usage variations ***\n";89 // loop through each element of $inputs to check the behavior of ctype_alnum()93 var_dump( ctype_alnum($input) );103 *** Testing ctype_alnum() : usage variations ***
2 Test ctype_alnum() function : usage variations - different integers7 /* Prototype : bool ctype_alnum(mixed $c)13 * Pass different integers to ctype_alnum() to test which character codes are considered17 echo "*** Testing ctype_alnum() : usage variations ***\n";22 if (ctype_alnum($i)) {31 *** Testing ctype_alnum() : usage variations ***
20 ctype_test_001("ctype_alnum");33 ctype_alnum 62
27 ctype_test_002("ctype_alnum");42 ctype_alnum 62 62 0
8 "ctype_alnum", "ctype_alpha", "ctype_cntrl", "ctype_digit",
48 // loop through each element of $values to test behaviour of ctype_alnum()
35 static PHP_FUNCTION(ctype_alnum);98 PHP_FE(ctype_alnum, arginfo_ctype_alnum)184 static PHP_FUNCTION(ctype_alnum) in PHP_FUNCTION() argument
Completed in 10 milliseconds