Skip to content

Instantly share code, notes, and snippets.

@pelmered
Last active February 7, 2021 09:54
Show Gist options
  • Save pelmered/b1b9741194a9e3520db06fdc15b3635c to your computer and use it in GitHub Desktop.
Save pelmered/b1b9741194a9e3520db06fdc15b3635c to your computer and use it in GitHub Desktop.
<?php
function incrementDeep(&$array, $value) {
$array += $value;
}
$test['foo']['bar']['test'] = 5;
incrementDeep($test['foo']['bar']['test'], 5);
incrementDeep($test['foo']['bar']['test2'], 5);
print_r($test);
die();
/* Result:
Array
(
[foo] => Array
(
[bar] => Array
(
[test] => 10
[test2] => 5
)
)
)
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment