stream_context_get_options

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

stream_context_get_options��ȡ��Դ��/���ݰ�/�����ĵIJ���

˵��

stream_context_get_options ( resource $stream_or_context ) : array

����ָ����Դ�����������ĵ����������

����

stream_or_context

��ȡ������Ϣ�� stream ���� context ��

����ֵ

����һ��������ԭ�����Ĺ������顣

����

Example #1 stream_context_get_options() ������

<?php
$params 
= array("method" => "POST");

stream_context_get_default(array("http" => $params));

var_dump(stream_context_get_options(stream_context_get_default()));

?>

�������̵���������ڣ�

array(1) {
  ["http"]=>
  array(1) {
    ["method"]=>
    string(4) "POST"
  }
}