Query: http_parse_params
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
HTTP_PARSE_PARAMS(3) 1 HTTP_PARSE_PARAMS(3) http_parse_params - Parse parameter listSYNOPSISobject http_parse_params (string $param, [int $flags = HTTP_PARAMS_DEFAULT])DESCRIPTIONParse parameter list. See the params parsing constants table for possible values of the $flags argument.PARAMETERSo $param - Parameters o $flags - Parse flagsRETURN VALUESReturns parameter list as stdClass object.EXAMPLESExample #1 A http_parse_params(3) example <?php var_dump(http_parse_params("text/html; charset="utf8"")); ?> The above example will output: object(stdClass)#1 (1) { ["params"]=> array(2) { [0]=> string(9) "text/html" [1]=> array(1) { ["charset"]=> string(4) "utf8" } } }SEE ALSOhttp_parse_headers(3), http_parse_cookie(3), http_parse_message(3). PHP Documentation Group HTTP_PARSE_PARAMS(3)
Related Man Pages |
---|
mime::field::paramval5.18(3) - mojave |
http_parse_params(3) - php |
mysqli_get_charset(3) - php |
tidy.getopt(3) - php |
mysqli_result.fetch_object(3) - php |
Similar Topics in the Unix Linux Community |
---|
Create html <ui> <li> by parsing text file |