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

Get the binary string representation of the ACL.
public toBinary ( ) : string
Результат string
Пример #1
0
 /**
  * Get the binary string representation of the ACL.
  *
  * @param bool $canonicalize
  * @return string
  */
 public function toBinary($canonicalize = true)
 {
     if ($canonicalize) {
         $this->canonicalize();
     }
     return parent::toBinary();
 }