So I have something like this:
$C = [
$B = [ $S = [$D[]], $H = [$C[]], $G = [$L[]]]]
I need to put array $H (which I know the name), with all of it's elements on the first place, so it goes like this:
$C = [
$B = [ $H = [$C[]], $S = [$D[]], $G = [$L[]]]]
How can I do that?