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

Get the SDDL string representation of the ACL.
public toSddl ( ) : string
Результат string
Пример #1
0
 /**
  * Get the SDDL string representation of the ACL.
  *
  * @param bool $canonicalize Whether or not to re-order the ACEs to be canonical before the operation.
  * @return string
  */
 public function toSddl($canonicalize = true)
 {
     if ($canonicalize) {
         $this->canonicalize();
     }
     return parent::toSddl();
 }