I have an array that looks something like this.
Array
(
[consultant] => Array
(
[John Smith] => Array
(
[General] => Array
(
[PCA] => 0
[NCA] => 0
)
)
)
)
How do I append a array to PCA in place of the 0
to look like this.
Array
(
[consultant] => Array
(
[John Smith] => Array
(
[General] => Array
(
[PCA] => Array
(
[Motor Block] => 0
)
[NCA] => 0
)
)
)
)
http://sandbox.onlinephpfunctions.com/code/d9b20040517e557fe93fdf1208079a619dcc213b