码迷,mamicode.com
首页 > Web开发 > 详细

php请求php

时间:2017-10-16 13:49:41      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:ade   encode   code   post   als   get   highlight   content   turn   

function post2($url, $data){//file_get_content
 
         
 
        $postdata = http_build_query(
 
            $data
 
        );
 
         
 
        $opts = array(‘http‘ =>
 
                      array(
 
                          ‘method‘  => ‘POST‘,
 
                          ‘header‘  => ‘Content-type: application/x-www-form-urlencoded‘,
 
                          ‘content‘ => $postdata
 
                      )
 
        );
 
         
 
        $context = stream_context_create($opts);
 
 
        $result = file_get_contents($url, false, $context);
 
        return $result;
 
 
    }

  

php请求php

标签:ade   encode   code   post   als   get   highlight   content   turn   

原文地址:http://www.cnblogs.com/weiyiyong/p/7676416.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!