|
update : 2015.11.03
php.shukuma.com검색:
|
http_parse_message(PECL pecl_http >= 0.12.0) http_parse_message — Parse HTTP messages 설명
object http_parse_message
( string
$message
)
Parses the HTTP 인수
반환값Returns a hierarchical object structure of the parsed messages. 예제
Example #1 Using http_parse_message()
<?php위 예제의 출력 예시:
stdClass object
(
[type] => 2
[httpVersion] => 1.1
[responseCode] => 200
[headers] => Array
(
[Content-Length] => 3
[Server] => Apache
)
[body] => Hi!
[parentMessage] => stdClass object
(
[type] => 2
[httpVersion] => 1.1
[responseCode] => 302
[headers] => Array
(
[Content-Length] => 0
[Location] => ...
)
[body] =>
[parentMessage] => ...
)
)
|