Jackalope\BinaryStreamWrapper::stream_open PHP Method

stream_open() public method

Get the information and store it for later usage.
public stream_open ( string $path, integer $mode, integer $options, mixed &$opened_path ) : boolean
$path string the backend path for this stream
$mode integer ignored
$options integer ignored
$opened_path mixed ignored
return boolean true on success
    public function stream_open($path, $mode, $options, &$opened_path)
    {
        $this->path = $path;
        return true;
    }