I am creating a template parser and i need to sort the array of variables that gets passed into the parser so that each array element that IS an array get processed first. For example:
$data = array(
'name' => 'Steven',
'type' => array(
'gender' => 'M',
'age' => 23'
)
)
I need ‘type’ to be first since it is an array, and ‘name’ to be last. Does anyone have an idea on how to do this? Ive looked at php.net’s manual at the different sort functions, but dont see how any apply to my situation.
1 Answer