r::is_get PHP 메소드

is_get() 정적인 공개 메소드

Checks if the current request is a GET request
static public is_get ( ) : boolean
리턴 boolean
    static function is_get()
    {
        return self::method() == 'GET' ? true : false;
    }