共计 159 个字符,预计需要花费 1 分钟才能阅读完成。
$content = stream_context_create([
'http' => [
'method' => "POST",
'content' => http_build_query($args),
'timeout' => 60
]
]);
$response = file_get_contents($url, false, $content);
正文完
发表至: PHP
2019-06-03