PHP 8.3.4 Released!

stream_context_get_params

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

stream_context_get_paramsコンテキストのパラメータを取得する

説明

stream_context_get_params(resource $context): array

パラメータおよびオプションの情報を、ストリームあるいはコンテキストから取得します。

パラメータ

context

ストリームリソースあるいは コンテキストリソース。

戻り値

すべてのコンテキストオプションおよびパラメータを含む連想配列を返します。

例1 stream_context_get_params() の例

基本的な使用例です。

<?php
$ctx
= stream_context_create();
$params = array("notification" => "stream_notification_callback");
stream_context_set_params($ctx, $params);

var_dump(stream_context_get_params($ctx));
?>

上の例の出力は、 たとえば以下のようになります。

array(2) {
  ["notification"]=>
  string(28) "stream_notification_callback"
  ["options"]=>
  array(0) {
  }
}

参考

add a note

User Contributed Notes 1 note

up
0
m dot staas at goowy dot com
8 years ago
Note that if the resource parameter is invalid the function will return a boolean with value false.

The code:
$r = null
$cert = stream_context_get_params($r);
var_dump($cert);

will return:
bool(false)
To Top