具有file_get_contents的 HTTP 请求,获取响应代码
我正在尝试与一起使用以发出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
并返回 false。有没有办法:
- 禁止显示警告(我计划在失败时抛出自己的异常)
- 从流中获取错误信息(至少是响应代码)