要使用PHP的 stream_context_create 函數(shù)發(fā)送POST請求,可以按照以下步驟操作:
$data = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query(array(
'param1' => 'value1',
'param2' => 'value2'
))
)
);
$context = stream_context_create($data);
$url = 'http://example.com/api';
$response = file_get_contents($url, false, $context);
var_dump($response);
通過上述步驟,您可以使用PHP的 stream_context_create 函數(shù)發(fā)送POST請求,并獲取到服務(wù)器的響應(yīng)。