yii\web\HeaderCollection::offsetExists PHP 메소드

offsetExists() 공개 메소드

This method is required by the SPL interface [[\ArrayAccess]]. It is implicitly called when you use something like isset($collection[$name]).
public offsetExists ( string $name ) : boolean
$name string the header name
리턴 boolean whether the named header exists
    public function offsetExists($name)
    {
        return $this->has($name);
    }