मैं 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
।