[Function] $http_response_header
페이지 정보
작성자 MintState 댓글 0건 조회 16,908회 작성일 09-02-25 11:34본문
[Function] $http_response_header
The $http_response_header array is similar to the get_headers() function. When using the HTTP wrapper, $http_response_header will be populated with the HTTP response headers.
PHP5 에서 get_headers()와 비슷한 기능합니다. 주어진 URL에서 header 를 배열로 반환 합니다.
PHP4 에서 get_headers()를 대신 해서 쓸 수 있습니다.
예)
출력 :
예)
출력 :
The $http_response_header array is similar to the get_headers() function. When using the HTTP wrapper, $http_response_header will be populated with the HTTP response headers.
PHP5 에서 get_headers()와 비슷한 기능합니다. 주어진 URL에서 header 를 배열로 반환 합니다.
PHP4 에서 get_headers()를 대신 해서 쓸 수 있습니다.
예)
<?php file_get_contents("http://google.co.kr"); var_dump($http_response_header); ?>
출력 :
예)
<?php file_get_contents("http://img0.gmodules.com/ig/f/oKstlUEg20s/intl/ALL_kr/logo.gif"); var_dump($http_response_header); ?>
출력 :
|
댓글목록
등록된 댓글이 없습니다.