✏️ 正在编辑: NoSeekStream.php
路径:
/home/bpioifn/www/pigmentse/vendor/guzzlehttp/streams/src/NoSeekStream.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php namespace GuzzleHttp\Stream; /** * Stream decorator that prevents a stream from being seeked */ class NoSeekStream implements StreamInterface { use StreamDecoratorTrait; public function seek($offset, $whence = SEEK_SET) { return false; } public function isSeekable() { return false; } public function attach($stream) { $this->stream->attach($stream); } }
💾 保存文件
← 返回文件管理器