fork(1) download
  1. <?php
  2.  
  3. $result['settings'] = ['store'=>['this'=>['here'=>'stored value']]];
  4. $location = "[store][this][here]";
  5.  
  6. preg_match_all('/\[(\w+)\]/',$location, $matches);
  7. $keys = $matches[1];
  8.  
  9. $value = $result['settings'][current($keys)];
  10. while(next($keys)) $value = $value[current($keys)];
  11.  
  12. echo $value;
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
stored value