PHP Conference Japan 2024

stream_context_get_default

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

stream_context_get_default检索默认流上下文

描述

stream_context_get_default(?array $options = null): resource

返回默认流上下文,在没有上下文参数的情况下调用文件操作(fopen()file_get_contents() 等)时使用。可以使用此函数通过与 stream_context_create() 相同的语法指定默认上下文的选项。

参数

options
options 必须是关联数组的关联数组,格式为 $arr['wrapper']['option'] = $value,或 null

返回值

一个流上下文 resource

变更日志

版本 描述
8.0.0 options 现在可以为 null。

示例

示例 #1 使用 stream_context_get_default()

<?php
$default_opts
= array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar",
'proxy'=>"tcp://10.54.1.39:8000"
)
);


$alternate_opts = array(
'http'=>array(
'method'=>"POST",
'header'=>"Content-type: application/x-www-form-urlencoded\r\n" .
"Content-length: " . strlen("baz=bomb"),
'content'=>"baz=bomb"
)
);

$default = stream_context_get_default($default_opts);
$alternate = stream_context_create($alternate_opts);

/* 发送到 10.54.1.39 上的代理服务器的常规 GET 请求
* 对于 www.example.com,使用 $default_opts 中指定的上下文选项
*/
readfile('http://www.example.com');

/* 直接发送到 www.example.com 的 POST 请求
* 使用 $alternate_opts 中指定的上下文选项
*/
readfile('http://www.example.com', false, $alternate);

?>

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top