21,893
社区成员
发帖
与我相关
我的任务
分享
$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);