Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taoso/php-kv
php kev-value store
https://github.com/taoso/php-kv
filesystem key-value kv kv-database nosql php sqlite store
Last synced: 4 days ago
JSON representation
php kev-value store
- Host: GitHub
- URL: https://github.com/taoso/php-kv
- Owner: taoso
- Created: 2017-06-17T04:40:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-17T04:47:08.000Z (over 7 years ago)
- Last Synced: 2024-04-21T00:07:40.201Z (7 months ago)
- Topics: filesystem, key-value, kv, kv-database, nosql, php, sqlite, store
- Language: PHP
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-kv
use sqlite as key-value store.## install
```
composer require lvht/kv
```## usage
```
set('a', [1,2,3]);var_dump($kv->get('a'));
```
The output is
```
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}
```