Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using a string path to set nested array data

Tags:

arrays

php

token

I have an unusual use-case I'm trying to code for. The goal is this: I want the customer to be able to provide a string, such as:

"cars.honda.civic = On" 

Using this string, my code will set a value as follows:

$data['cars']['honda']['civic'] = 'On'; 

It's easy enough to tokenize the customer input as such:

$token = explode("=",$input); $value = trim($token[1]); $path = trim($token[0]); $exploded_path = explode(".",$path); 

But now, how do I use $exploded path to set the array without doing something nasty like an eval?

like image 558
Anthony Avatar asked Mar 09 '12 02:03

Anthony


1 Answers

Use the reference operator to get the successive existing arrays:

$temp = &$data; foreach($exploded as $key) {     $temp = &$temp[$key]; } $temp = $value; unset($temp); 
like image 140
alexisdm Avatar answered Sep 24 '22 18:09

alexisdm