PHP Conference Japan 2024

stream_context_set_options

(PHP 8 >= 8.3.0)

stream_context_set_options为指定的上下文设置选项

描述

stream_context_set_options(资源 $context, 数组 $options): true

为指定的上下文设置选项。

参数

context

要应用选项的流或上下文资源。

options

context 设置的选项。

注意:

options 必须是关联 数组,格式为 $array['wrapper']['option'] = $value

有关流选项的列表,请参阅 上下文选项和参数

返回值

成功时返回 true,失败时返回 false

示例

示例 #1 stream_context_set_options() 示例

<?php

$context
= stream_context_create();

$options = [
'http' => [
'protocol_version' => 1.1,
'user_agent' => 'PHPT Agent',
],
];

stream_context_set_options($context, $options);
var_dump(stream_context_get_options($context));
?>

以上示例将输出

array(1) {
  ["http"]=>
  array(2) {
    ["protocol_version"]=>
    float(1.1)
    ["user_agent"]=>
    string(10) "PHPT Agent"
  }
}

参见

添加注释

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top