使用file_get_contents发送post请求带上body

2,438次阅读

共计 159 个字符,预计需要花费 1 分钟才能阅读完成。

$content = stream_context_create([
            'http' => [
                'method' => "POST",
                'content' => http_build_query($args),
                'timeout' => 60
            ]
        ]);
$response = file_get_contents($url, false, $content);

正文完
 
Blood.Cold
版权声明:本站原创文章,由 Blood.Cold 2019-06-03发表,共计159字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。