stream_context_get_params
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
stream_context_get_params — コンテキストのパラメータを取得する
戻り値
すべてのコンテキストオプションおよびパラメータを含む連想配列を返します。
例
例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) { } }
参考
- stream_context_set_option() - ストリーム / ラッパー / コンテキストのオプションを設定する
- stream_context_set_params() - ストリーム / ラッパー / コンテキストのパラメータを設定する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google