stream_context_get_options

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

stream_context_get_options检索流/包装器/上下文的选项

描述

stream_context_get_options(resource $stream_or_context): array

返回指定流或上下文上的选项数组。

参数

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"
  }
}

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top