X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=inline;f=http%2FParams.md;h=4349769938a6aafcdb802d1865e267d3491eeb02;hb=4a09ec24441c7d918d0a62c60e11616ffa0db744;hp=d8bf3b77b691e3a690cb18e937b70a78e297d2cf;hpb=95e046983749327a4f1271b99badaae7a838ec67;p=mdref%2Fmdref-http diff --git a/http/Params.md b/http/Params.md index d8bf3b7..4349769 100644 --- a/http/Params.md +++ b/http/Params.md @@ -22,16 +22,20 @@ Parse, interpret and compose HTTP (header) parameters. Parse sub dimensions indicated by square brackets. * PARSE_QUERY Parse URL querystring (same as http\Params::PARSE_URLENCODED|http\Params::PARSE_DIMENSION). +* PARSE_RFC5987 + Parse [RFC5987](http://tools.ietf.org/html/rfc5987) style encoded character set and language information embedded in HTTP header params. +* PARSE_RFC5988 + Parse [RFC5988](http://tools.ietf.org/html/rfc5988) (Web Linking) tags of Link headers. ## Properties: -* public $params = NULL +* public array $params = NULL The (parsed) parameters. -* public $param_sep = http\Params::DEF_PARAM_SEP +* public array $param_sep = http\Params::DEF_PARAM_SEP The parameter separator(s). -* public $arg_sep = http\Params::DEF_ARG_SEP +* public array $arg_sep = http\Params::DEF_ARG_SEP The argument separator(s). -* public $val_sep = http\Params::DEF_VAL_SEP +* public array $val_sep = http\Params::DEF_VAL_SEP The value separator(s). -* public $flags = http\Params::PARSE_DEFAULT +* public int $flags = http\Params::PARSE_DEFAULT The modus operandi of the parser. See http\Params::PARSE_* constants.