Elastica\Result::__isset PHP 메소드

__isset() 공개 메소드

Magic function to support isset() calls.
public __isset ( string $key ) : boolean
$key string Key name
리턴 boolean
    public function __isset($key)
    {
        $source = $this->getData();
        return array_key_exists($key, $source) && $source[$key] !== null;
    }