Inpsyde\MultilingualPress\Common\Nonce\ArrayContext::offsetExists PHP 메소드

offsetExists() 공개 메소드

Checks if a value with the given name exists.
부터: 3.0.0
public offsetExists ( mixed $name ) : boolean
$name mixed The name of a value.
리턴 boolean Whether or not a value with the given name exists.
    public function offsetExists($name)
    {
        return array_key_exists($name, $this->data);
    }