Warning: Invalid argument supplied for foreach() in /home/jihswbiz/public_html/t6.gwilt.org/refDox.php on line 212
Docs-is_special

 

ReLoad

Keys


Functions

arraybrowsercolorcookiedatetimeDBdebugdeviceDSTequiverrorflagsfontformatgeo
holidayhtmlisjsonmathparsePHPprintsearchsortstringtabletexttracetype
VOTDweatherxml

Function  is_special   Lines 1398-1412 (14 lines) file  utils.php   Last mod: Fri 2021-05-14 21:45:07

function is_special $ch )
        {
#-k     string type is
#-      only applies to a single character

        
$c ord $ch );

        if (
$c <= 47) return true;                      # 48: 0-9
        
if (($c >= 58) and ($c <= 64)) return true;     # 65: A-Z
        
if (($c >= 91) and ($c <= 96)) return true;     # 92: a-z
        
if ($c >= 123) return true;

        return 
false;
        }

?>