
stream_context_set_option 함수의 첫 번째 인자인 context는 stream_context_create 함수의 반환값을 대체할 수 있습니다.
stream_context_create 함수는 stream_context_options 배열을 반환합니다. 이 배열은 stream_context_set_option 함수의 첫 번째 인자로 사용됩니다.
stream_context_set_option 함수를 사용하여 헤더를 추가하는 예제는 다음과 같습니다.
#hostingforum.kr
php
$opts = array(
'http' => array(
'method' => 'GET',
'header' => 'User-Agent: My User Agent'
)
);
$context = stream_context_create($opts);
stream_context_set_option 함수를 사용하여 헤더를 추가하는 예제는 다음과 같습니다.
#hostingforum.kr
php
$opts = stream_context_create(array(
'http' => array(
'method' => 'GET',
'header' => 'User-Agent: My User Agent'
)
));
stream_context_set_option($opts, 'http', 'header', 'Accept: text/html');
stream_context_set_option 함수를 사용하여 헤더를 추가하는 예제는 다음과 같습니다.
#hostingforum.kr
php
$opts = stream_context_create(array(
'http' => array(
'method' => 'GET',
'header' => 'User-Agent: My User Agent'
)
));
stream_context_set_option($opts, 'http', 'header', 'Accept: text/html');
stream_context_set_option($opts, 'http', 'header', 'Accept-Language: ko');
2025-04-05 06:15