fork download
  1. <?php
  2.  
  3. $str='[hello][world]';
  4. $array = array('hello' => array('world' => 'it works?'));
  5.  
  6. $keys = explode('][', substr($str, 1, -1));
  7. $values = $array;
  8. foreach($keys as $key) {
  9. $values = $values[$key];
  10. }
  11. print_r($values);
  12. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
it works?