Searched refs:ctype_xdigit (Results 1 – 14 of 14) sorted by relevance
2 Test ctype_xdigit() function : error conditions - Incorrect number of args7 /* Prototype : bool ctype_xdigit(mixed $c)13 * Pass incorrect number of arguments to ctype_xdigit() to test behaviour16 echo "*** Testing ctype_xdigit() : error conditions ***\n";19 echo "\n-- Testing ctype_xdigit() function with Zero arguments --\n";20 var_dump( ctype_xdigit() );22 //Test ctype_xdigit with one more than the expected number of arguments26 var_dump( ctype_xdigit($c, $extra_arg) );30 *** Testing ctype_xdigit() : error conditions ***32 -- Testing ctype_xdigit() function with Zero arguments --[all …]
2 Test ctype_xdigit() function : basic functionality7 /* Prototype : bool ctype_xdigit(mixed $c)12 echo "*** Testing ctype_xdigit() : basic functionality ***\n";18 var_dump(ctype_xdigit($c1));19 var_dump(ctype_xdigit($c2));25 *** Testing ctype_xdigit() : basic functionality ***
2 Test ctype_xdigit() function : usage variations - heaxadecimal and octal values7 /* Prototype : bool ctype_xdigit(mixed $c)19 echo "*** Testing ctype_xdigit() : usage variations ***\n";38 var_dump(ctype_xdigit($c));42 var_dump(ctype_xdigit($c));48 var_dump(ctype_xdigit($c));52 var_dump(ctype_xdigit($c));58 *** Testing ctype_xdigit() : usage variations ***
2 Test ctype_xdigit() function : usage variations - different data typse as $c arg7 /* Prototype : bool ctype_xdigit(mixed $c)13 * Pass different data types as $c argument to ctype_xdigit() to test behaviour16 echo "*** Testing ctype_xdigit() : usage variations ***\n";89 // loop through each element of $inputs to check the behavior of ctype_xdigit()93 var_dump( ctype_xdigit($input) );103 *** Testing ctype_xdigit() : usage variations ***
2 Test ctype_xdigit() function : usage variations - Different strings7 /* Prototype : bool ctype_xdigit(mixed $c)13 * Pass strings containing different character types to ctype_xdigit() to test17 echo "*** Testing ctype_xdigit() : usage variations ***\n";53 var_dump( ctype_xdigit($value) );61 *** Testing ctype_xdigit() : usage variations ***
2 Test ctype_xdigit() function : usage variations - different integers7 /* Prototype : bool ctype_xdigit(mixed $c)13 * Pass different integers to ctype_xdigit() to test which character codes are considered17 echo "*** Testing ctype_xdigit() : usage variations ***\n";22 if (ctype_xdigit($c)) {31 *** Testing ctype_xdigit() : usage variations ***
26 ctype_test_001("ctype_xdigit");39 ctype_xdigit 22
33 ctype_test_002("ctype_xdigit");48 ctype_xdigit 22 22 0
10 "ctype_space", "ctype_upper", "ctype_xdigit"
45 static PHP_FUNCTION(ctype_xdigit);108 PHP_FE(ctype_xdigit, arginfo_ctype_xdigit)264 static PHP_FUNCTION(ctype_xdigit) in PHP_FUNCTION() argument
141 if (isxdigit(i)) x += ctype_xdigit; in pcre_maketables()
181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
1062 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()1063 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()1064 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()1065 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()1314 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()1315 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()1351 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()1379 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++; in check_escape()1401 while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0) in check_escape()
2589 #define ctype_xdigit 0x08 macro
Completed in 54 milliseconds