PHP Conference Japan 2024

stream_context_get_options

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

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

描述

stream_context_get_options(资源 $stream_or_context): 数组

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

参数

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