php post数据
$postdata = http_build_query($data);$opts = array (
'http' => array (
'method' => 'POST',
'header'=> "Content-type: application/x-www-form-urlencodedrn",
"Content-Length: " . strlen($data) . "rn",
'content' => $postdata
)
);
$context = stream_context_create($opts);
$html = file_get_contents($url, false, $context);
页:
[1]