LdapTools\Security\Acl\Dacl::toSddl PHP Метод

toSddl() публичный Метод

Get the SDDL string representation of the ACL.
public toSddl ( boolean $canonicalize = true ) : string
$canonicalize boolean Whether or not to re-order the ACEs to be canonical before the operation.
Результат string
    public function toSddl($canonicalize = true)
    {
        if ($canonicalize) {
            $this->canonicalize();
        }
        return parent::toSddl();
    }