Cml\Http\Request::isPost PHP Method

isPost() public static method

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