时间:2021-07-01 10:21:17 帮助过:4人阅读
$opts = array(
'http' => array(
'method' => 'POST',
'header' => 'content-type:application/x-www-form-urlencoded',
'user_agent' => $_SERVER['HTTP_USER_AGENT'],
'content' => http_build_query($data)
)
);
$context = stream_context_create($opts);
$result = file_get_contents($url, false, $context);