get
Get array value recursively using dot notation.
get(array $value, string $key, string $join = '.');
Example:
// Return `$_GET['foo']['bar']['baz']` value or `null`
echo get($_GET, 'foo.bar.baz');
Helper functions.
get
Get array value recursively using dot notation.
get(array $value, string $key, string $join = '.');
Example:
// Return `$_GET['foo']['bar']['baz']` value or `null`
echo get($_GET, 'foo.bar.baz');