Create array items by specify a key that includes hierachy
Posted
by Relax
on Stack Overflow
See other posts from Stack Overflow
or by Relax
Published on 2010-04-15T06:46:38Z
Indexed on
2010/04/15
6:53 UTC
Read the original article
Hit count: 142
php
Given original codes as:
foreach($option as $name=>$value)
$array[$name] = $value;
and some $name as
button[0][text], button[0][value], button[1][text], spider[0][name], ...
How could i get results as
$array[button][0][text] = $value
...
$array[spider][0][name] = $value ?
...
© Stack Overflow or respective owner