Cml\Http\Request::isGet PHP 메소드

isGet() 공개 정적인 메소드

判断是否为GET请求
public static isGet ( ) : boolean
리턴 boolean
    public static function isGet()
    {
        return strtolower(self::getService('REQUEST_METHOD')) == 'get' ? true : false;
    }