admin 发表于 2018-10-14 00:59:52

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]
查看完整版本: php post数据