芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/guzzlehttp/psr7/src/LazyOpenStream.php
filename = $filename; $this->mode = $mode; // unsetting the property forces the first access to go through // __get(). unset($this->stream); } /** * Creates the underlying stream lazily when required. */ protected function createStream(): StreamInterface { return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode)); } }