Home
last modified time | relevance | path

Searched refs:ctype_alnum (Results 1 – 11 of 11) sorted by relevance

/PHP-7.0/ext/ctype/tests/
H A Dctype_alnum_error.phpt2 Test ctype_alnum() function : error conditions - Incorrect number of args
7 /* Prototype : bool ctype_alnum(mixed $c)
13 * Pass incorrect number of arguments to ctype_alnum() to test behaviour
16 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 arguments
28 var_dump( ctype_alnum($c, $extra_arg) );
34 *** Testing ctype_alnum() : error conditions ***
36 -- Testing ctype_alnum() function with Zero arguments --
[all …]
H A Dctype_alnum_basic.phpt2 Test ctype_alnum() function : basic functionality
7 /* 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 ***
H A Dctype_alnum_variation4.phpt2 Test ctype_alnum() function : usage variations - octal and hexadecimal values
7 /* Prototype : bool ctype_alnum(mixed $c)
13 * Pass octal and hexadecimal values to ctype_alnum() to test behaviour
16 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 ***
H A Dctype_alnum_variation3.phpt2 Test ctype_alnum() function : usage variations - different string values
7 /* Prototype : bool ctype_alnum(mixed $c)
13 * Pass different strings to ctype_alnum to test behaviour
16 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 ***
H A Dctype_alnum_variation1.phpt2 Test ctype_alnum() function : usage variations - Different data types as $c arg
7 /* Prototype : bool ctype_alnum(mixed $c)
13 * Pass different data types as $c argument to ctype_alnum() to test behaviour
16 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 ***
H A Dctype_alnum_variation2.phpt2 Test ctype_alnum() function : usage variations - different integers
7 /* Prototype : bool ctype_alnum(mixed $c)
13 * Pass different integers to ctype_alnum() to test which character codes are considered
17 echo "*** Testing ctype_alnum() : usage variations ***\n";
22 if (ctype_alnum($i)) {
31 *** Testing ctype_alnum() : usage variations ***
H A D001.phpt20 ctype_test_001("ctype_alnum");
33 ctype_alnum 62
H A D002.phpt27 ctype_test_002("ctype_alnum");
42 ctype_alnum 62 62 0
H A Dbug25745.phpt8 "ctype_alnum", "ctype_alpha", "ctype_cntrl", "ctype_digit",
H A Dctype_alpha_variation3.phpt48 // loop through each element of $values to test behaviour of ctype_alnum()
/PHP-7.0/ext/ctype/
H A Dctype.c35 static PHP_FUNCTION(ctype_alnum);
98 PHP_FE(ctype_alnum, arginfo_ctype_alnum)
183 static PHP_FUNCTION(ctype_alnum) in PHP_FUNCTION() argument

Completed in 16 milliseconds