LdapTools\Utilities\TSProperty::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( string | null $value = null )
$value string | null Pass binary TSProperty data to construct its object representation.
    public function __construct($value = null)
    {
        if ($value) {
            $this->decode(bin2hex($value));
        }
    }