yii\mongodb\file\StreamWrapper::getContextOptions PHP Method

getContextOptions() public method

Returns options associated with [[context]].
public getContextOptions ( ) : array
return array context options.
    public function getContextOptions()
    {
        if ($this->_contextOptions === null) {
            $this->_contextOptions = stream_context_get_options($this->context);
        }
        return $this->_contextOptions;
    }