PHP dynamic array index name

13,226

Solution 1

You can pass an array of indexes to this function below. So if you would like to get $some_array[0]['client_name']['third_level_index'] then you can do this:

function get_array_value(array $array, array $indexes)
{
    if (count($array) == 0 || count($indexes) == 0) {
        return false;
    }

    $index = array_shift($indexes);
    if(!array_key_exists($index, $array)){
        return false;
    }

    $value = $array[$index];
    if (count($indexes) == 0) {
        return $value;
    }

    if(!is_array($value)) {
        return false;
    }

    return get_array_value($value, $indexes);
}

$some_array = array(/* nested array */);

$indexes = array(0, 'client_name', 'third_level_index');

$value = get_array_value($some_array, $indexes);

Solution 2

function arraything ($arrayOfIndexes) {
  $current = $this->array;
  foreach ($arrayOfIndexes as $curIndex) {
    $current = $current[$curIndex];
  }
  return $current;
}

$x = arraything (array(0, 'client_thing'));

There is no validation (e.g. for missing keys), but the idea should be clear.

Solution 3

The get_array_value function works well. So I also wrote up a set_array_value function.

Here it goes:

function get_array_value($array, $indexes)
{
  if (count($indexes) == 1)
  {
    return $array[$indexes[0]];
  }

  $index = array_shift($indexes);
  return get_array_value($array[$index], $indexes);
}

function set_array_value(&$array, $indexes, &$value)
{
  if (count($indexes) == 1)
  {
    return $array[reset($indexes)] = $value;
  }

  $index = array_shift($indexes);
  return set_array_value($array[$index], $indexes, $value);
}

$some_array = array();
$some_array[0]['client_name']['id'] = 1;
$some_array[1]['client_name']['id'] = 2;

$indexes = array(0, 'client_name', 'id');
$value = get_array_value($some_array, $indexes);
print_r($value);

$id = 23;
set_array_value($some_array, $indexes, $id);
$value = get_array_value($some_array, $indexes);
print_r($value);

Hope it helps :-)

:Nirav

Share:
13,226
Jonathan Tizard
Author by

Jonathan Tizard

PHP Web developer. Visit my blog for more info!

Updated on June 04, 2022

Comments

  • Jonathan Tizard
    Jonathan Tizard almost 2 years

    I want to pass a function the index value of an array – e.g [‘client_name’] – a first level value works because I can do

            $index = client_name;
    
            function arraything ($index) { return $this->arraytolookat[$index]; }
    

    The question is… how do I do this, if it’s a multi nested array?

    I tried the eval statement and apparently it doesn’t evaluate brackets well … So I tried this.

            $index = “[0][‘client_name’]”;
    
            Eval(“$this->arraytolookat$index”);
    

    But it just fails… winges about a unexpected [ - any Ideas?

    EDIT: I do not know how many levels this function may be required to go into, therefore I cannot just append a set amount of brackets at the end. Its not as simple as it looks ^^

    EDIT 2: Basically - I have written a form validation tool and one of the functions returns correct post data - I wanted a simple method that when you enter the name of the form element - it would literally return teh POST data back to the element e.g getFormData("client_name") - however when a form gets more complex, it can go into arrays, I need to prepare for the possibility of getFormData("['$i']client_name") or somthing along those lines, stuff happens to the postdata in that class so that function must be used. I just want that function to take in a string not an array.