aesonus/storage

存储库

v3.4 2018-07-22 01:05 UTC

This package is auto-updated.

Last update: 2024-09-20 12:48:43 UTC


README

Build Status

存储

定义信息存储的合约。

    interface StorageInterface extends \Countable

合约方法

获取

必须从存储中返回一个值或 $default

    public function get($offset, $default = NULL);

运行时存储

RuntimeStorage 类是一个使用属性在数组中存储值的存储类。这也可以用作数据库操作缓存。