Loading... ```php <?php //请输入你的php代码 //$postdata = http_build_query($data); 要发送的数据 $data = array( 'action'=>'getinfo', 'svname'=>'欢聚网络', 'svsite'=>'ok'); $data = http_build_query($data); //$postdata = http_build_query($data); $options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $data //'timeout' => 60 * 60 // 超时时间(单位:s) ) ); $url = "http://www.baidu.com"; //要请求的网址 $context = stream_context_create($options); //echo $context; $result = file_get_contents($url, false, $context); echo $result; ?> ``` 最后修改:2022 年 05 月 31 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏