POST 요청을 만들기 위해 file_get_contents
함께 사용하려고 stream_context_create
합니다. 지금까지 내 코드 :
$options = array('http' => array(
'method' => 'POST',
'content' => $data,
'header' =>
"Content-Type: text/plain\r\n" .
"Content-Length: " . strlen($data) . "\r\n"
));
$context = stream_context_create($options);
$response = file_get_contents($url, false, $context);
잘 작동하지만 HTTP 오류가 발생하면 경고를 내 보냅니다.
file_get_contents(...): failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request
거짓을 반환합니다. 방법이 있습니까?
- 경고를 억제합니다 (실패한 경우 내 자신의 예외를 던질 계획입니다).
- 스트림에서 오류 정보 (적어도 응답 코드)를 가져옵니다.
'ignore_errors' => TRUE
하는 것$options
입니다.