Function Minifier->isAlphaNumeric
Definitions
sources/jsmin.php
- Checks to see if a character is alphanumeric.
- Visibility: protected
- Is abstract?: No
- Is static?: Yes
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $char | string | No | No | required parameter | N/A | N/A | Just one character |
Returns
- Type: bool
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Checks to see if a character is alphanumeric.
*
* @param string $char Just one character
* @return bool
*/
protected static function isAlphaNumeric($char)
* Checks to see if a character is alphanumeric.
*
* @param string $char Just one character
* @return bool
*/
protected static function isAlphaNumeric($char)

