✏️ 正在编辑: LazyOpenStream.php
路径:
/home/bpioifn/www/pigmentse/vendor/guzzlehttp/streams/src/LazyOpenStream.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php namespace GuzzleHttp\Stream; /** * Lazily reads or writes to a file that is opened only after an IO operation * take place on the stream. */ class LazyOpenStream implements StreamInterface { use StreamDecoratorTrait; /** @var string File to open */ private $filename; /** @var string $mode */ private $mode; /** * @param string $filename File to lazily open * @param string $mode fopen mode to use when opening the stream */ public function __construct($filename, $mode) { $this->filename = $filename; $this->mode = $mode; } /** * Creates the underlying stream lazily when required. * * @return StreamInterface */ protected function createStream() { return Stream::factory(Utils::open($this->filename, $this->mode)); } }
💾 保存文件
← 返回文件管理器