stream_context_set_default

(PHP 5 >= 5.3.0, PHP 7) Set the default stream context resource stream_context_set_default ( array $options ) 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 as stream_context_create(). Parameters: options The options to set for the default con

stream_context_get_params

(PHP 5 >= 5.3.0, PHP 7) Retrieves parameters from a context array stream_context_get_params ( resource $stream_or_context ) Retrieves parameter and options information from the stream or context. Parameters: stream_or_context A stream resource or a context resource Returns: Returns an associate array containing all context options and paramete

stream_context_get_options

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Retrieve options for a stream/wrapper/context array stream_context_get_options ( resource $stream_or_context ) Returns an array of options on the specified stream or context. Parameters: stream_or_context The stream or context to get options from Returns: Returns an associative array with the options.

stream_context_get_default

(PHP 5 >= 5.1.0, PHP 7) Retrieve the default stream context resource stream_context_get_default ([ array $options ] ) Returns the default stream context which is used whenever file operations (fopen(), file_get_contents(), etc...) are called without a context parameter. Options for the default context can optionally be specified with this function using the same syntax as stream_context_create(). Paramete

stream_context_create

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Creates a stream context resource stream_context_create ([ array $options [, array $params ]] ) Creates and returns a stream context with any options supplied in options preset. Parameters: options Must be an associative array of associative arrays in the format $arr['wrapper']['option'] = $value. Default to an empty array.

stream_bucket_prepend

(PHP 5, PHP 7) Prepend bucket to brigade void stream_bucket_prepend ( resource $brigade, object $bucket ) This function can be called to prepend a bucket to a bucket brigade. It is typically called from php_user_filter::filter(). Parameters: brigade brigade is a resource pointing to a bucket brigade which contains one or more bucket objects. buck

stream_bucket_new

(PHP 5, PHP 7) Create a new bucket for use on the current stream object stream_bucket_new ( resource $stream, string $buffer ) This function is currently not documented; only its argument list is available.

stream_bucket_make_writeable

(PHP 5, PHP 7) Return a bucket object from the brigade for operating on object stream_bucket_make_writeable ( resource $brigade ) This function is currently not documented; only its argument list is available.

stream_bucket_append

(PHP 5, PHP 7) Append bucket to brigade void stream_bucket_append ( resource $brigade, object $bucket ) This function is currently not documented; only its argument list is available.

set_socket_blocking

(PHP 4, PHP 5) Alias of stream_set_blocking() This function is an alias of: stream_set_blocking()