php man page for stream_context_set_default

Query: stream_context_set_default

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

STREAM_CONTEXT_SET_DEFAULT(3)						 1					     STREAM_CONTEXT_SET_DEFAULT(3)

stream_context_set_default - Set the default stream context

SYNOPSIS
resource stream_context_set_default (array $options)
DESCRIPTION
Set the default stream context which will be used whenever file operations (fopen(3), file_get_contents(3), etc...) are called without a context parameter. Uses the same syntax as stream_context_create(3).
PARAMETERS
o $options - The options to set for the default context. Note $options must be an associative array of associative arrays in the format $arr['wrapper']['option'] = $value.
RETURN VALUES
Returns the default stream context.
EXAMPLES
Example #1 stream_context_set_default(3) example <?php $default_opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"Accept-language: en " . "Cookie: foo=bar", 'proxy'=>"tcp://10.54.1.39:8000" ) ); $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'); ?>
SEE ALSO
stream_context_create(3), stream_context_get_default(3), Listing of supported wrappers with context options ("Supported Protocols and Wrap- pers").. PHP Documentation Group STREAM_CONTEXT_SET_DEFAULT(3)
Related Man Pages
xmlrpc_encode_request(3) - php
get_headers(3) - php
copy(3) - php
readfile(3) - php
stream_context_get_params(3) - php
Similar Topics in the Unix Linux Community
Shell quiz: emulate an associative array