加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

PHP stream_context_create()作用和用法分析

发布时间:2020-12-13 05:51:36 所属栏目:PHP教程 来源:网络整理
导读:作用:创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程。 函数原型:resource stream_context_create ([ array $options [,array $params ]] ) 用法 例子一: div

作用:创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程。
函数原型:resource stream_context_create ([ array $options [,array $params ]] )
用法

例子一:


<div class="codetitle"><a style="CURSOR: pointer" data="30361" class="copybut" id="copybut30361" onclick="doCopy('code30361')"> 代码如下:<div class="codebody" id="code30361">
<?php
$opts = array( 'http-->array(
'method'=>"GET",
'header'=>"Accept-language: enrn" .
"Cookie: foo=barrn"
)
);
$context = stream_context_create($opts);
/ Sends an http request to www.52php.cn
with additional headers shown above
/
$fp = fopen('//www.52php.cn','r',false,$context);
fpassthru($fp);
fclose($fp);
?>

例子二:


<div class="codetitle"><a style="CURSOR: pointer" data="22075" class="copybut" id="copybut22075" onclick="doCopy('code22075')"> 代码如下:<div class="codebody" id="code22075">
<?php
$opts = array( 'http-->array(
'method'=>"GET",
'header'=>"Accept-language: enrn" .
"Cookie: foo=barrn"
)
);
$context = stream_context_create($opts);
?>
You would setup the header this way:
<?php
$opts = array( 'http-->array(
'method'=>"GET",
'header'=>array("Accept-language: en",
"Cookie: foo=bar",
"Custom-Header: value")
)
);
$context = stream_context_create($opts);
?>

例子三:

<div class="codetitle"><a style="CURSOR: pointer" data="49" class="copybut" id="copybut49" onclick="doCopy('code49')"> 代码如下:<div class="codebody" id="code49">
<?php
$opts = array('http' => array('proxy' => 'tcp://127.0.0.1:8080','request_fulluri' => true));
$context = stream_context_create($opts);
$data = file_get_contents('//www.52php.cn',$context);
echo $data;
?>

例子四:


<div class="codetitle"><a style="CURSOR: pointer" data="39570" class="copybut" id="copybut39570" onclick="doCopy('code39570')"> 代码如下:<div class="codebody" id="code39570">
<?php
function do_post_request($url,$postdata,$files = null)
{
$data = "";
$boundary = "---------------------".substr(md5(rand(0,32000)),10);
//Collect Postdata
foreach($postdata as $key => $val)
{
$data .= "--$boundaryn";
$data .= "Content-Disposition: form-data; name="".$key.""nn".$val."n";
}
$data .= "--$boundaryn";
//Collect Filedata
foreach($files as $key => $file)
{
$fileContents = file_get_contents($file['tmp_name']);
$data .= "Content-Disposition: form-data; name="{$key}"; filename="{$file['name']}"n";
$data .= "Content-Type: image/jpegn";
$data .= "Content-Transfer-Encoding: binarynn";
$data .= $fileContents."n";
$data .= "--$boundary--n";
}
$params = array('http' => array(
'method' => 'POST',
'header' => 'Content-Type: multipart/form-data; boundary='.$boundary,
'content' => $data
));
$ctx = stream_context_create($params);
$fp = fopen($url,'rb',$ctx);
if (!$fp) {
throw new Exception("Problem with $url,$php_errormsg");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url,$php_errormsg");
}
return $response;
}
//set data (in this example from post)
//sample data
$postdata = array(
'name' => $_POST['name'],
'age' => $_POST['age'],
'sex' => $_POST['sex']
);
//sample image
$files['image'] = $_FILES['image'];
do_post_request("//www.52php.cn",$files);
?>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读