<?php $nested_array = array(); $temp = &$nested_array; $item = 'brachA-branchB-branchC'; foreach (explode('-', $item) as $key => $value) { $temp = &$temp[$value]; } print_r($nested_array);
You have javascript disabled. You will not be able to edit any code.