Getting Started
Windwalker Registry is a storage of nested array or object, help us manage multi-level structures data.
use Windwalker\Registry\Registry;
$registry = new Registry;
// Set a value in the registry.
$registry->set('foo', 'bar');
// Get a value from the registry;
$value = $registry->get('foo');
Load config by Registry
use Windwalker\Registry\Registry;
$registry = new Registry;
// Load by string
$registry->loadString('{"foo" : "bar"}');
$registry->loadString('<root></root>', 'xml');
// Load by object or array
$registry->load($object);
// Load by file
$registry->loadFile($root . '/config/config.json', 'json');
Accessing a Registry by getter & setter
Get value
$registry->get('foo');
// Get a non-exists value and return default
$registry->get('foo', 'default');
// OR
$registry->get('foo') ?: 'default';
Set value
// Set value
$registry->set('bar', $value);
// Sets a default value if not already assigned.
$registry->def('bar', $default);
Accessing children value by path
$json = '{
"parent" : {
"child" : "Foo"
}
}';
$registry = new Registry($json);
$registry->get('parent.child'); // return 'Foo'
$registry->set('parent.child', $value);
Append & Prepend
Support push / pop / shift / unshift
methods.
$registry->set('foo.bar', array('fisrt', 'second'));
$registry->push('foo.bar', 'third');
$registry->get('foo.bar');
// Result: Array(first, second, third)
Use other separator
$registry->setSeparator('/');
$data = $registry->get('foo/bar');
Accessing a Registry as an Array
The Registry
class implements ArrayAccess
so the properties of the registry can be accessed as an array. Consider the following examples:
// Set a value in the registry.
$registry['foo'] = 'bar';
// Get a value from the registry;
$value = $registry['foo'];
// Check if a key in the registry is set.
if (isset($registry['foo']))
{
echo 'Say bar.';
}
Merge Registry
Using load* methods to merge two config files.
$json1 = '{
"field" : {
"keyA" : "valueA",
"keyB" : "valueB"
}
}';
$json2 = '{
"field" : {
"keyB" : "a new valueB"
}
}';
$registry->loadString($json1);
$registry->loadString($json2);
Output
Array(
field => Array(
keyA => valueA
keyB => a new valueB
)
)
Merge Another Registry
$object1 = '{
"foo" : "foo value",
"bar" : {
"bar1" : "bar value 1",
"bar2" : "bar value 2"
}
}';
$object2 = '{
"foo" : "foo value",
"bar" : {
"bar2" : "new bar value 2"
}
}';
$registry1 = new Registry(json_decode($object1));
$registry2 = new Registry(json_decode($object2));
$registry1->merge($registry2);
If you just want to merge first level, do not hope recursive:
$registry1->merge($registry2, false); // Set param 2 to false that Registry will only merge first level
Merge to a child node:
$registry->mergeTo('foo.bar', $anotherRegistry);
Dump to file.
$registry->toString();
$registry->toString('xml');
$registry->toString('ini');
Dump to one dimension
$array = array(
'flower' => array(
'sunflower' => 'light',
'sakura' => 'samurai'
)
);
$registry = new Registry($array);
// Make data to one dimension
$flatted = $registry->flatten();
print_r($flatted);
The result:
Array
(
[flower.sunflower] => light
[flower.sakura] => samurai
)
Using YAML
Add Symfony YAML component in composer.json
{
"require-dev": {
"symfony/yaml": "~2.0"
}
}
Using yaml
format
$registry->loadFile($yamlFile, 'yaml');
$registry->loadString('foo: bar', 'yaml');
// Convert to string
$registry->toString('yaml');
RegistryHelper
use Windwalker\Registry\RegistryHelper;
RehistryHelper::loadFaile($file, $format); // File to array
RehistryHelper::loadString($string, $format); // String to array
RehistryHelper::toString($array, $format); // Array to string
// Use format class
$json = RehistryHelper::getFormatClass('json'); // Get JsonFormat
$string = $json::structToString($array);
If you found a typo or error, please help us improve this document.