Hi there fellow WebmasterWorld'ers,
private function WhiteSpaceChecker((string)$input)
if(preg_match("/^(\s)+$/i", $input)){
return($this->Whitespace = true);
}
else{
return($this->Whitespace = false);
}
}
Simple enough function, can this be made any better at all?
Cheers,
MRb