This supports a dotted syntax similar to MongoDB's dot notation for creating and manipulating deeply nested arrays compactly in PHP. This notation is also used by other projects, such as Elasticsearch and CakePHP.
composer require best/dot-notation
This package has a single class with static methods, \Best\DotNotation
.
There are two main groups of methods: those that operate recursively across an entire array, and those that get/set values from such arrays.
For the recursive methods, you can use expand
and compact
methods to convert
the dots from the expanded form and the compact form, and these operations are
inverses of each other:
use Best\DotNotation;
$array = DotNotation::compact(array(
'my' => array(
'dotted' ==> array(
'key' => 'value'
)
)
));
// returns the dotted array:
array('my.dotted.key' => 'value');
// convert back to the other form:
$original = DotNotation::expand(['my.dotted.key' => 'value']);
For the other methods, pass an array as their first argument, and most then a "key path" as their second argument, that determines which keys on the array to operate on.
The key path can include dots to indicate subkeys of arrays to access.
For example, to access the key 'child'
of the array key 'parent'
on the variable
$container
, you would do:
$container = array('parent' => array('child' => '2'));
$childElement = \Best\DotNotation::get($container, 'parent.child');
// $childElement === '2' here
You can also use numbers as keys. For example, to access the second array element in the key 'parent'
of the variable
$container
, you would do this: (Note these are zero-indexed just like normal PHP arrays, so to
get the second element, you specify .1 as the key):
$container = array('parent' => array('child0', 'child1'));
$secondElement = \Best\DotNotation::get($container, 'parent.1');
// $secondElement === 'child1' here.
You can also use bare integers:
$container = array('parent0', 'parent1', 'parent2');
$thirdElement = \Best\DotNotation::get($container, 2);
// $thirdElement === 'parent2' here.
Furthermore you can combine integer and string keys arbitrarily as well:
$container = array('parent0', array('child' => array('grandChild' => 'greatGrandChild'))));
$greatGrandChild = \Best\DotNotation::get($container, '1.child.grandChild')
// $greatGrandChild === 'greatGrandChild' here.
If you want to include a literal dot inside a key name, you can escape it with a backslash.
$container = array('my.dotted.key' => 'value');
$value = \Best\DotNotation::get($container, 'my\.dotted\.key'));
// equals: 'value'
Backslash is not treated as a special character in any other case, though. So you can use them in keys as long as it doesn't preceed a dot. Neither backslashes nor dots in values are transformed in any way, either.
Most of these methods require a valid key path. A valid key path is
either an integer or non-empty string. Passing an invalid key path will
result in a \Best\DotNotation\BadKeyPath
exception.
Get the value stored at the key path.
If any of the keys do not exist in the key path, this will
throw a \Best\DotNotation\KeyNotFound
exception.
Get the value stored at the key path.
If any of the keys do not exist in the key path, this will return null.
Get the value stored at the key path.
If any of the keys do not exist in the key path, this will return the default value from the third argument.
Whether the array has a value at the key path.
Note that even if this value is null
, this will still
return true
.
use Best\DotNotation;
$container = ['movies' => [
[
'title' => 'Batman V. Superman - Dawn of Justice',
'director' => 'Zack Snyder'
'lead actor 1' => 'Henry Cavill'
'lead actor 2' => 'Ben Affleck'
'supporting actor 1' => 'Gal Gadot'
'supporting actor 2' => 'Jesse Eisenberg'
],
[
'title' => 'La La Land',
'director' => 'Damian Chazelle'
],
[
'title' => 'Justice League',
],
];
$zackSnyder = DotNotation::get($container, 'movies.0.director');
// $zackSnyder === 'Zack Snyder'
$null = DotNotation::getOrNull($container, 'movies.1.lead actor');
// $null === null
$jossWhedon = DotNotation::getOrDefault($container, 'movies.2.director', 'Joss Whedon');
// $jossWhedon === 'Joss Whedon'
$hasDirector = DotNotation::has($container, 'movies.2.director');
// $hasDirector === false
Set the value
Set the path, and ignore any invalid intermediate keys, setting them to empty arrays along the way.
The new array with the key set is returned.
Remove the value from the key path if it exists. A \Best\DotNotation\KeyNotFound
exception is thrown
if any of the keys in the key path do not exist.
Remove the value from the key path if it exists. No exception is thrown if the key path does not exist.
The new array with the key removed is returned.
Recursively expand the dots inside the keys into new arrays. Returns the newly expanded array.
If any inconsistent keys are detected (some keys are defined as scalars in some keys and are implicitly
arrays in other keys), a \Best\DotNotation\InconsistentKeyTypes
exception will be thrown.
Compact the array into a dotted array, with keys, suitable for passing
to expand()
.
For example:
use Best\DotNotation;
$array = DotNotation::compact(array(
'my' => array(
'dotted' ==> array(
'key' => 'value'
)
)
));
// returns the dotted array:
array('my.dotted.key' => 'value');
Compact the array as in compact()
, but also compact integer keys,
so that the array will be as flat as possible.
For example,
$array = \Best\DotNotation::compact(array(
'my' => array(
'dotted' ==> array(
'key' => 'value'
)
)
));
// returns the dotted array:
array('my.dotted.key' => 'value');