PHP http(file_get_content) GET与POST请求方式


1.GET方式请求

[php] view plaincopy
  1. <?php  
  2.   
  3.        $data = array('sParam1'=>'test1','sParam2'=>101,'isAuto'=>1);  //定义参数  
  4.   
  5.        $data = @http_build_query($data);  //把参数转换成URL数据  
  6.   
  7.        $aContext = array('http' => array('method' => 'GET',  
  8.   
  9.                                                                  'header'  => 'Content-type: application/x-www-form-urlencoded',  
  10.   
  11.                                                                  'content' => $data ));  
  12.   
  13.        $cxContext  = stream_context_create($aContext);  
  14.   
  15.        $sUrl = 'http://www.mytest.com/test.php'; //此处必须为完整路径  
  16.   
  17.        $d = @file_get_contents($sUrl,false,$cxContext);  
  18.   
  19.        print_r($d);  
  20.   
  21. ?>  


2.POST方式请求

[python] view plaincopy
  1. <?php  
  2.   
  3.        $data = array('sParam1'=>'test1','sParam2'=>101,'isAuto'=>1);  //定义参数  
  4.   
  5.        $data = @http_build_query($data);  //把参数转换成URL数据  
  6.   
  7.        $aContext = array('http' => array('method' => 'POST',  
  8.   
  9.                                                                  'header'  => 'Content-type: application/x-www-form-urlencoded',  
  10.   
  11.                                                                  'content' => $data ));  
  12.   
  13.        $cxContext  = stream_context_create($aContext);  
  14.   
  15.        $sUrl = 'http://www.mytest.com/test.php'; //此处必须为完整路径  
  16.   
  17.        $d = @file_get_contents($sUrl,false,$cxContext);  
  18.   
  19.        print_r($d);  
  20.   
  21. ?>  

智能推荐

注意!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。



 
© 2014-2019 ITdaan.com 粤ICP备14056181号  

赞助商广告