LdapTools\Utilities\MBString::getCollator PHP Method

getCollator() protected static method

Load and return a collator instance.
protected static getCollator ( ) : Collator
return Collator
    protected static function getCollator()
    {
        if (!self::$collator) {
            self::$collator = collator_create('root');
        }
        return self::$collator;
    }