2

在本段后面的代码片段中,我使用 Test_Stream 对象创建了一个名为 test 的流包装器。我正在尝试使用流上下文并有几个问题。首先是代码:

<?php
class Test_Stream {
    public $context;

    public function __construct()
    {
        print_r(stream_context_get_options($this->context));
        exit;
    }
}

$context = array(
    'test' => array('key' => 'value'),
    'otherwrapper' => array('key' =>'value')
);
$context = stream_context_create($context);

stream_wrapper_register('test', 'Test_Stream');

$fp = fopen('test://www.domain.tld/whatever', 'r', false, $context);

所以现在,在那个代码片段中,Test_Stream 正在注册到“测试”流包装器,但是......如果我事先不知道包装器名称是什么,或者如果我想把它留给开发商来决定。你怎么知道类中的包装器名称是什么?似乎您必须提前知道它才能获得适当的上下文选项(除非您只是假设第一个上下文选项数组是正确的)但是如果您不提前知道它怎么办?

4

1 回答 1

1

您知道打开时调用了哪个协议,因此,在此处使用您的上下文:

<?php
class Test_Stream {
    public $context;

    public function stream_open($path, $mode, $options, &$opened_path ){
        var_dump(parse_url($path, PHP_URL_SCHEME));
        exit;
    }
}

$context = array(
    'test' => array('key' => 'value'),
    'otherwrapper' => array('key' =>'value')
);
$context = stream_context_create($context);
stream_wrapper_register('test', 'Test_Stream');
$fp = fopen('test://www.domain.tld/whatever', 'r', false, $context);


string(4) "test"
于 2013-08-11T19:26:58.427 回答