Skip to content

Instantly share code, notes, and snippets.

@pelmered
Last active February 7, 2021 09:54
Embed
What would you like to do?
<?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