It's worth mentioning that passing an empty array will NOT reset default options.
<?php
stream_context_set_default(array()); // Does nothing.
?>
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
stream_context_set_default — デフォルトのストリームコンテキストを設定する
(fopen()、file_get_contents() のような) ファイル操作関数がコンテキストパラメータなしでコールされた場合に使用される デフォルトのストリームコンテキストを設定します。 stream_context_create() と同じ構文が使用できます。
options
デフォルトコンテキストに設定するオプション。
注意:
options
は、$arr['wrapper']['option'] = $value
のような形式の、連想配列の連想配列である必要があります。
デフォルトのストリームコンテキストを返します。
例1 stream_context_set_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"
)
);
$default = stream_context_set_default($default_opts);
/* www.example.com に対する通常の GET リクエストを、プロキシサーバー 10.54.1.39
* に対して送信します。コンテキストオプション $default_opts を使用します。
*/
readfile('http://www.example.com');
?>
It's worth mentioning that passing an empty array will NOT reset default options.
<?php
stream_context_set_default(array()); // Does nothing.
?>