PHP使用file_get_contents函数POST数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP使用file_get_contents函数POST数据相关的知识,希望对你有一定的参考价值。

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函数分段读取大记事本或其它文本文件

PHP file_get_contents 函数无法使用 Cloudflare(网络服务器代理)

如何处理 PHP 中 file_get_contents() 函数的警告?

使用带参数的 file_get_contents 从 PHP 获取请求

PHP file_get_contents 函数超时的几种解决方法

PHP 函数和@functions