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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
<?php
// Start of ctype v.
/**
* Check for alphanumeric character(s)
* @link http://www.php.net/manual/en/function.ctype-alnum.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is either
* a letter or a digit, false otherwise.
*/
function ctype_alnum ($text) {}
/**
* Check for alphabetic character(s)
* @link http://www.php.net/manual/en/function.ctype-alpha.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is
* a letter from the current locale, false otherwise.
*/
function ctype_alpha ($text) {}
/**
* Check for control character(s)
* @link http://www.php.net/manual/en/function.ctype-cntrl.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is
* a control character from the current locale, false otherwise.
*/
function ctype_cntrl ($text) {}
/**
* Check for numeric character(s)
* @link http://www.php.net/manual/en/function.ctype-digit.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in the string
* text is a decimal digit, false otherwise.
*/
function ctype_digit ($text) {}
/**
* Check for lowercase character(s)
* @link http://www.php.net/manual/en/function.ctype-lower.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is
* a lowercase letter in the current locale.
*/
function ctype_lower ($text) {}
/**
* Check for any printable character(s) except space
* @link http://www.php.net/manual/en/function.ctype-graph.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is
* printable and actually creates visible output (no white space), false
* otherwise.
*/
function ctype_graph ($text) {}
/**
* Check for printable character(s)
* @link http://www.php.net/manual/en/function.ctype-print.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text
* will actually create output (including blanks). Returns false if
* text contains control characters or characters
* that do not have any output or control function at all.
*/
function ctype_print ($text) {}
/**
* Check for any printable character which is not whitespace or an
alphanumeric character
* @link http://www.php.net/manual/en/function.ctype-punct.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text
* is printable, but neither letter, digit or blank, false otherwise.
*/
function ctype_punct ($text) {}
/**
* Check for whitespace character(s)
* @link http://www.php.net/manual/en/function.ctype-space.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text
* creates some sort of white space, false otherwise. Besides the
* blank character this also includes tab, vertical tab, line feed,
* carriage return and form feed characters.
*/
function ctype_space ($text) {}
/**
* Check for uppercase character(s)
* @link http://www.php.net/manual/en/function.ctype-upper.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is
* an uppercase letter in the current locale.
*/
function ctype_upper ($text) {}
/**
* Check for character(s) representing a hexadecimal digit
* @link http://www.php.net/manual/en/function.ctype-xdigit.php
* @param text string <p>
* The tested string.
* </p>
* @return bool true if every character in text is
* a hexadecimal 'digit', that is a decimal digit or a character from
* [A-Fa-f] , false otherwise.
*/
function ctype_xdigit ($text) {}
// End of ctype v.
?>
|