kajyr / localstorage
A simple PHP class to store key/value information on a text file
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/kajyr/localstorage
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2020-05-01 16:58:21 UTC
README
A simple PHP class to store key/value information on a text file.
Useful for rapid local prorotyping.
Not useful for production environments
##Basic usage:
$config = new LocalStorage(); $config->set('bar', 'pippo'); $foo = $config->get('bar');