https://github.com/dmeybohm/dot-notation
MongoDB like dot notation for PHP arrays
https://github.com/dmeybohm/dot-notation
Last synced: about 2 months ago
JSON representation
MongoDB like dot notation for PHP arrays
- Host: GitHub
- URL: https://github.com/dmeybohm/dot-notation
- Owner: dmeybohm
- License: mit
- Created: 2013-10-24T19:23:07.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-07-28T02:52:17.000Z (almost 2 years ago)
- Last Synced: 2024-11-25T13:44:59.341Z (6 months ago)
- Language: PHP
- Size: 108 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Dot Notation
This supports a dotted syntax similar to [MongoDB's dot notation][1] for creating
and manipulating deeply nested arrays compactly in PHP. This notation is also used by
other projects, such as Elasticsearch and CakePHP.## Installation
```
composer require best/dot-notation
```## Overview
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.### Recursive methods
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:```php
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']);
```### Get/set values
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:```php
$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):```php
$container = array('parent' => array('child0', 'child1'));
$secondElement = \Best\DotNotation::get($container, 'parent.1');
// $secondElement === 'child1' here.
```You can also use bare integers:
```php
$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:```php
$container = array('parent0', array('child' => array('grandChild' => 'greatGrandChild'))));
$greatGrandChild = \Best\DotNotation::get($container, '1.child.grandChild')
// $greatGrandChild === 'greatGrandChild' here.
```### Escaping dot to include it in keys
If you want to include a literal dot inside a key name, you can escape it with a backslash.
```php
$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.
## MethodsMost 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 Methods
#### `get(array $array, string|int $keyPath): mixed`
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.#### `getOrNull(array $array, string|int $keyPath): mixed`
Get the value stored at the key path.
If any of the keys do not exist in the key path, this will
return null.#### `getOrDefault(array $array, string|int $keyPath, mixed $defaultValue): mixed`
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.#### `has(array $array, string|int $keyPath): bool`
Whether the array has a value at the key path.
Note that even if this value is `null`, this will still
return `true`.```php
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 Methods
#### `set(): array`
Set the value
#### `setAndOverride(array $array, string|int $keyPath): array`
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 Methods#### `remove()`
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.#### `removeIfExists(array $array, string|int $keyPath)`
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.
### Recursive Methods
#### `expand(array $dottedArray): array`
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(array $array): array`
Compact the array into a dotted array, with keys, suitable for passing
to `expand()`.For example:
```php
use Best\DotNotation;$array = DotNotation::compact(array(
'my' => array(
'dotted' ==> array(
'key' => 'value'
)
)
));
// returns the dotted array:
array('my.dotted.key' => 'value');
```#### `compactWithIntegerKeys(array $array): array`
Compact the array as in `compact()`, but also compact integer keys,
so that the array will be as flat as possible.For example,
```php
$array = \Best\DotNotation::compact(array(
'my' => array(
'dotted' ==> array(
'key' => 'value'
)
)
));
// returns the dotted array:
array('my.dotted.key' => 'value');
```[1]: http://docs.mongodb.org/manual/core/document/#dot-notation
[2]: http://framework.zend.com/