要使用PHP的 stream_context_create 函数发送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 函数发送POST请求,并获取到服务器的响应。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: php filesize为何在不同系统有差异