LdapTools\Utilities\TSPropertyArray::toArray PHP 메소드

toArray() 공개 메소드

Get a simple associative array containing of all TSProperty names and values.
public toArray ( ) : array
리턴 array
    public function toArray()
    {
        $userParameters = [];
        foreach ($this->tsProperty as $property => $tsPropObj) {
            $userParameters[$property] = $tsPropObj->getValue();
        }
        return $userParameters;
    }