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

PHP使用file_get_contents函数POST数据

时间:2016-04-06 15:35:00      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:php file_get_contents post http

function http_post($url,$data = null)

{

$cxContext = NULL;

if($data!=null)

{


$opts = array(  

    ‘http‘=>array(  

  ‘method‘=>"POST",  

  ‘header‘=>"Content-type: application/x-www-form-urlencoded\r\n".  

  "Content-length:".strlen($data)."\r\n" .   

  "\r\n",  

  ‘content‘ => $data,  

    )  

  );  

 $cxContext = stream_context_create($opts); 

}

    $output = file_get_contents($url, false, $cxContext);  

 

    return $output;  

}


本文出自 “流媒体服务器技术研究” 博客,请务必保留此出处http://livestreaming.blog.51cto.com/3135568/1760842

PHP使用file_get_contents函数POST数据

标签:php file_get_contents post http

原文地址:http://livestreaming.blog.51cto.com/3135568/1760842

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