$default = stream_context_set_default($default_opts);/* Sends a regular GET request to proxy server at 10.54.1.39 * For www.example.com using context options specified in $default_opts */readfile('http://www.example.com');?> 参见 stream_context_create() - 创建资源流上下文 stream_...
stream_context_set_default - 设置默认流上下文 描述 代码语言:javascript 复制 resourcestream_context_set_default(array $options) 设置当文件操作(fopen(),file_get_contents()等等)被调用而没有上下文参数时将使用的默认流上下文。使用与stream_context_create()相同的语法。
stream_context_set_default(array$options) :resource Set the default stream context which will be used whenever file operations (fopen(),file_get_contents(), etc…) are called without a context parameter. Uses the same syntax asstream_context_create(). 参数 options The options to set for the...