(PHP 4 >= 4.3.0, PHP 5, PHP 7)
stream_context_create — 创建资源流上下文
$options
[, array $params
]] )
创建并返回一个资源流上下文,该资源流中包含了 options
中提前设定的所有参数的值。
options
必须是一个二维关联数组,格式如下:$arr['wrapper']['option'] = $value 。
默认是一个空数组。
params
必须是 $arr['parameter'] = $value 格式的关联数组。 请参考 context parameters 里的标准资源流参数列表。
上下文资源流,类型为 resource 。
版本 | 说明 |
---|---|
5.3.0 |
增加了可选参数 params 。
|
Example #1 使用 stream_context_create()
<?php
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
/* Sends an http request to www.example.com
with additional headers shown above */
$fp = fopen('http://www.example.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>