stream_context_create
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
stream_context_create — 创建流上下文
参数
options
-
必须是关联数组的关联数组,格式为 $arr['wrapper']['option'] = $value
,或 null
。有关可用包装器和选项的列表,请参阅 上下文选项。
默认为 null
。
params
-
必须是关联数组,格式为 $arr['parameter'] = $value
,或 null
。有关标准流参数的列表,请参阅 上下文参数。
示例
示例 #1 使用 stream_context_create()
<?php
$opts = [
'http' => [
'method' => "GET",
// 使用换行符 \n 分隔多个标头
'header' => "Accept-language: en\nCookie: foo=bar",
]
];
$context = stream_context_create($opts);
/* 向 www.example.com 发送 http 请求
并带有上面显示的附加标头 */
$fp = fopen('http://www.example.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>