ฉันกำลังพยายามใช้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
และส่งกลับเท็จ มีวิธีการ:
- ระงับคำเตือน (ฉันวางแผนที่จะโยนข้อยกเว้นของตัวเองในกรณีที่ล้มเหลว)
- รับข้อมูลข้อผิดพลาด (อย่างน้อยรหัสตอบกลับ) จากสตรีม
'ignore_errors' => TRUE
$options