kajyr/localstorage

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.

A simple PHP class to store key/value information on a text file

dev-master 2014-03-27 16:24 UTC

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');