lsolesen\pel\PelIfd::offsetExists PHP 메소드

offsetExists() 공개 메소드

This methods is part of the ArrayAccess SPL interface for overriding array access of objects, it allows you to check for existance of an entry in the IFD: if (isset($ifd[PelTag::FNUMBER])) ... do something with the F-number.
public offsetExists ( lsolesen\pel\PelTag $tag ) : boolean
$tag lsolesen\pel\PelTag the offset to check.
리턴 boolean whether the tag exists.
    public function offsetExists($tag)
    {
        return isset($this->entries[$tag]);
    }