META
META
const string the key to keep value information
## JSON Storage
Provides a very simple way to persistent JSON storage. Acts as a registry key saver.
Example of use:
$j = new JSONStorage();
$j->addRegistry('custom'); echo $j->registryExists('custom'); $j->setData('mydata','super','custom'); $j->save(); $j->load();
echo $j->getData('super','custom');