PHP stream_context_set_default() 函数设置默认流上下文,该上下文在文件操作例如 fopen(), file_get_contents()等在没有上下文参数的情况下调用。它使用与 stream_context_create() 函数相同的语法。
语法
stream_context_set_default(options)
参数
options | 必填。 指定为默认上下文设置的选项。它必须是格式为 $arr['wrapper']['option'] = $value 的关联数组 |
返回值
返回默认流上下文。
示例:使用stream_context_set_default()
下面的示例显示了stream_context_set_default的用法() 函数。
<?php
//默认选项
$default_opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar",
)
);
//创建默认上下文资源
$default = stream_context_set_default($default_opts);
//使用以下命令向 www.example.com 发送 GET 请求
//$default_opts 中指定的上下文选项
readfile('http://www.example.com');
?>
上述代码的输出将类似于:
<!doctype html>
<html>
<head>
<title>Example Domain</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 2em;
background-color: #fdfdff;
border-radius: 0.5em;
box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}
a:link, a:visited {
color: #38488f;
text-decoration: none;
}
@media (max-width: 700px) {
div {
margin: 0 auto;
width: auto;
}
}
</style>
</head>
<body>
<div>
<h1>Example Domain</h1>
<p>This domain is for use in illustrative examples in documents. You may use this
domain in literature without prior coordination or asking for permission.</p>
<p><a href="https://www.iana.org/domains/example">More informations...</a></p>
</div>
</body>
</html>