set
Set array value recursively using dot notation.
set(array &$out, string $key, $value = null, string $join = '.');
Example:
// Set `$_GET['foo']['bar']['baz']` value to `true`
set($_GET, 'foo.bar.baz', true);
Helper functions.
set
Set array value recursively using dot notation.
set(array &$out, string $key, $value = null, string $join = '.');
Example:
// Set `$_GET['foo']['bar']['baz']` value to `true`
set($_GET, 'foo.bar.baz', true);