Horde_ActiveSync_Utils::_stripNon7BitChars PHP Method

_stripNon7BitChars() protected static method

Strip out non 7Bit characters from a text string.
protected static _stripNon7BitChars ( string $text ) : string | boolean
$text string The string to strip.
return string | boolean The stripped string, or false if failed.
    protected static function _stripNon7BitChars($text)
    {
        return preg_replace('/[^\\x09\\x0A\\x0D\\x20-\\x7E]/', '', $text);
    }