LdapTools\Security\SID::toString PHP Method

toString() public method

Get the SID in its friendly string form.
public toString ( ) : string
return string
    public function toString()
    {
        return 'S-' . $this->revisionLevel . '-' . $this->identifierAuthority . implode(preg_filter('/^/', '-', $this->subAuthorities));
    }