最佳答案
我正在尝试使用 file_get_contents
和 stream_context_create
一起发送 POST 请求。到目前为止我的代码:
$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。有没有办法: