Cml\Http\Request::isGet PHP Method

isGet() public static method

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