jord-jd/json-key-value-store 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jord-jd/json-key-value-store

最新稳定版本:v4.0.0

Composer 安装命令:

composer require jord-jd/json-key-value-store

包简介

A simple JSON based key value store

README 文档

README

Build Status Coverage Status StyleCI

A simple JSON based key value store.

Installation

This JSON Key Value Store package can be easily installed using Composer. Just run the following command from the root of your project.

composer require jord-jd/json-key-value-store

If you have never used the Composer dependency manager before, head to the Composer website for more information on how to get started.

Usage

Using the JSON Key Value Store is designed to be super simple.

Here is a basic usage example:

use JordJD\JsonKeyValueStore\JsonKeyValueStore;

$store = new JsonKeyValueStore('store.json.gz');

$store->set('key1', 'value123');
$store->set('key2', 'value456');
$store->delete('key2');

$value = $store->get('key1');

// $value = 'value123'

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 4
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 0
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: LGPL-3.0-only
  • 更新时间: 2026-02-14