개발자 Q&A

개발하다 막혔다면? 여기서 질문하세요! 초보부터 고수까지, 함께 고민하고 해결하는 공간입니다. 누구나 자유롭게 질문하고 답변을 남겨보세요!

2025.04.05 06:14

stream_context_set_option에 관한 질문

목록
  • 클린아키텍처광 13시간 전 2025.04.05 06:14 새글
  • 1
    1
제가 HTTP 요청에 헤더를 추가하는 코드를 작성중인데, stream_context_set_option 함수를 사용하여 헤더를 추가하려고 합니다.
stream_context_set_option 함수의 첫 번째 인자인 context에 어떤 값을 할당해야 하나요?

    댓글목록

    profile_image
    나우호스팅  13시간 전



    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

  • 개발자 Q&A 포인트 정책
      글쓰기
      50P
      댓글
      10P
  • 전체 9,234건 / 6 페이지

검색

게시물 검색