(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
stream_context_get_options — 检索流/包装器/上下文的选项
stream_or_context
要获取选项的流或上下文
返回包含选项的关联数组。
示例 #1 stream_context_get_options() 示例
<?php
$params = array("method" => "POST");
stream_context_set_default(array("http" => $params));
var_dump(stream_context_get_options(stream_context_get_default()));
?>
上面的示例将输出类似于以下的内容
array(1) { ["http"]=> array(1) { ["method"]=> string(4) "POST" } }