covex-nn/joos-stream

此包已被弃用,不再维护。作者建议使用covex-nn/vfs包代替。

PHP 流封装器,事务性虚拟文件系统

4.1.1 2013-11-29 21:29 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:23:18 UTC


README

示例

<?php

  JooS\Stream\Wrapper_FS::register("any-vfs-protocol", __DIR__);

  file_put_contents("any-vfs-protocol://" . basename(__FILE__), "hahaha");
  unlink("any-vfs-protocol://" . basename(__FILE__));

  // JooS\Stream\Wrapper_FS::commit("any-vfs-protocol");
  // echo file_exists(__FILE__) ? "yes" : "no";

  JooS\Stream\Wrapper_FS::unregister("any-vfs-protocol");

?>

阅读更多

请访问 wiki