A simple PHP class to store key/value information on a text file
A simple PHP class to store key/value information on a text file., (*1)
Useful for rapid local prorotyping., (*2)
Not useful for production environments, (*3)
$config = new LocalStorage(); $config->set('bar', 'pippo'); $foo = $config->get('bar');
Sources Download