stream_context_get_options
獲取資源流/數據包/上下文的參數
函數名稱:stream_context_get_options()
函數描述:stream_context_get_options() 函數返回指定上下文的選項數組。
適用版本:PHP 4 >= 4.3.0, PHP 5, PHP 7
用法: stream_context_get_options ( resource $stream_or_context ) : array
參數:
返回值: 該函數返回一個關聯數組,其中包含指定上下文的選項。
示例:
// 创建一个上下文$context = stream_context_create([ 'http' => [ 'method' => 'POST', 'header' => 'Content-Type: application/json', 'content' => json_encode(['name' => 'John', 'age' => 30]) ] ]); // 获取上下文的选项$options = stream_context_get_options($context); // 输出选项数组print_r($options);
輸出:
Array ( [http] => Array ( [method] => POST [header] => Content-Type: application/json [content] => {"name":"John","age":30} ) )
以上示例中,我們首先使用stream_context_create() 函數創建了一個上下文,其中包含了一個HTTP 請求的選項。然後,我們使用stream_context_get_options() 函數獲取上下文的選項,並將其存儲在$options 變量中。最後,我們使用print_r() 函數打印出$options 數組的內容,以便查看上下文的選項。
在輸出結果中,可以看到選項數組中包含了http 鍵,該鍵對應的值是一個關聯數組,其中包含了HTTP 請求的相關選項,如請求方法、請求頭和請求體內容。