
SwooleHttpResponse::header 함수를 사용하여 HTTP 헤더를 설정하는 방법은 다음과 같습니다.
1. `Swoole\Http\Response` 객체를 생성합니다.
2. `header` 메소드를 사용하여 HTTP 헤더를 설정합니다. 예를 들어, `Content-Type` 헤더를 설정하려면 `$response->header('Content-Type', 'application/json');`과 같은 코드를 사용합니다.
3. HTTP 헤더를 설정한 이후에, `$response->end()` 메소드를 사용하여 HTTP 응답을 보냅니다.
요청이 들어와도 헤더가 설정되지 않는 이유는 `$response->end()` 메소드를 호출하지 않았기 때문입니다. `$response->end()` 메소드를 호출하지 않으면 HTTP 헤더가 설정되지 않습니다.
다른 HTTP 헤더를 설정하는 방법은 다음과 같습니다.
- `Content-Type` 헤더: `$response->header('Content-Type', 'application/json');`
- `Set-Cookie` 헤더: `$response->header('Set-Cookie', 'cookie_name=cookie_value');`
- `Location` 헤더: `$response->header('Location', 'http://example.com');`
- `Cache-Control` 헤더: `$response->header('Cache-Control', 'max-age=3600');`
Swoole 버전 4.4.16에서 `$response->header` 메소드는 HTTP 헤더를 설정하는 데 사용됩니다. `$response->end` 메소드는 HTTP 응답을 보냅니다.
다음은 예제 코드입니다.
#hostingforum.kr
php
$response = new SwooleHttpResponse();
$response->header('Content-Type', 'application/json');
$response->header('Set-Cookie', 'cookie_name=cookie_value');
$response->header('Location', 'http://example.com');
$response->header('Cache-Control', 'max-age=3600');
$response->end();
이 코드는 HTTP 헤더를 설정하고 HTTP 응답을 보냅니다.
2025-04-03 17:17