covex-nn / vfs
PHP流包装器,事务性虚拟文件系统
1.0.2
2018-05-08 07:04 UTC
Requires
- php: ^7.1
- symfony/filesystem: ^3.4 || ^4.0
This package is not auto-updated.
Last update: 2024-09-15 04:57:44 UTC
README
示例
<?php Covex\Stream\FileSystem::register("any-vfs-protocol", __DIR__); file_put_contents("any-vfs-protocol://" . basename(__FILE__), "hahaha"); unlink("any-vfs-protocol://" . basename(__FILE__)); // Covex\Stream\FileSystem::commit("any-vfs-protocol"); // echo file_exists(__FILE__) ? "yes" : "no"; Covex\Stream\FileSystem::unregister("any-vfs-protocol"); ?>