stream_context_get_options
(PHP 4 >= 4.3.0, PHP 5)
stream_context_get_options — 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.
Список параметров
-
stream_or_context
-
The stream or context to get options from
Возвращаемые значения
Returns an associative array with the options.
Примеры
Пример #1 stream_context_get_options() example
<?php
$params = array("method" => "POST");
stream_context_get_default(array("http" => $params));
var_dump(stream_context_get_options(stream_context_get_default()));
?>
Результатом выполнения данного примера
будет что-то подобное:
array(1) {
["http"]=>
array(1) {
["method"]=>
string(4) "POST"
}
}