(PHP 5 >= 5.1.0, PHP 7, PHP 8)
stream_context_get_default — 检索默认流上下文
返回默认流上下文,在没有上下文参数的情况下调用文件操作(fopen()、file_get_contents() 等)时使用。可以使用此函数通过与 stream_context_create() 相同的语法指定默认上下文的选项。
一个流上下文 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);
?>