fisharebest / flysystem-chroot-adapter
从另一个文件系统的子文件夹创建文件系统。
3.0.0
2022-02-18 12:45 UTC
Requires
- league/flysystem: ~3.0
Requires (Dev)
README
此适配器可以从现有文件系统的子文件夹创建一个新的文件系统。
重要提示:由于 flysystem 3.3 的发布,此功能现在可以直接从 flysystem 提供。您应迁移到该包。 在 composer.json 中,将 fisharebest/flysystem-chroot-adapter
替换为 league/flysystem-path-prefixing
。
在 composer.json 中,将 fisharebest/flysystem-chroot-adapter
替换为 league/flysystem-path-prefixing
。
在您的代码中,将 Fisharebest\Flysystem\Adapter\ChrootAdapter
替换为 League\Flysystem\PathPrefixing
。
安装
composer require fisharebest/flysystem-chroot-adapter
使用方法
use League\Flysystem\Filesystem; use League\Flysystem\Adapter\Local; use Fisharebest\Flysystem\Adapter\ChrootAdapter // Write a file to a filesystem. $filesystem = new Filesystem(new Local(__DIR__)); $filesystem->write('foo/bar/fab/file.txt', 'hello world!'); // Create a chroot filesystem from the foo/bar folder. $chroot = new Filesystem(new ChrootAdapter($filesystem, 'foo/bar')); // And read it back from the chroot. $chroot->read('fab/file.txt'); // 'hello world!'