lithium\action\Request::__isset PHP 메소드

__isset() 공개 메소드

Allows request parameters to be checked using short-hand notation. See the __get() method for more details.
또한 보기: lithium\action\Request::__get()
public __isset ( string $name ) : boolean
$name string The name of the request parameter to check.
리턴 boolean Returns true if the key in `$name` is set in the `$params` array, otherwise `false`.
    public function __isset($name)
    {
        return isset($this->params[$name]);
    }