Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9252329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:55:04+00:00 2026-06-18T10:55:04+00:00

I want to find a way to set a value in a multi-dimensional array

  • 0

I want to find a way to set a value in a multi-dimensional array with a dynamic subscript. Let me illustrate a very simple example:

$deep['foo'] = array();
$deep['foo']['bar'] = "Elvis has left the building";
$meta = array( 'foo','bar' );
$super_meta = "[{$meta[0]}][{$meta[1]}]";
echo "\nWhere is Elvis? " . $deep[$meta[0]][$meta[1]] . ". Are we sure?\n";
echo "\nWhere is Elvis? " . $deep{$super_meta} . ".\n\n";

In this example the first echo line prints Elvis has left the building as we’d expect but in the second echo line, we don’t know until runtime how many levels deep in the $meta structure we are going to go. In a desperate attempt to make my dreams come true I’ve added the $deep{$super_meta} command. No errors but it results in an empty string. Darn.

With my dreams crushed I’m hoping someone can pick me back up again and show me the proverbial “PHP light”.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T10:55:05+00:00Added an answer on June 18, 2026 at 10:55 am

    You need to start with the whole array ($deep), then iterate through the elements in $meta and for each one, extract a deeper nested array. Try this:

    $result = $deep;
    foreach ($meta as $elem) {
        $result = $result[$elem];
    }
    echo $result;
    // outputs "Elvis has left the building"
    

    Note that this does not include any error checking. It will return with a big fat error if any element does not exist. You can handle this quite easily:

    $result = $deep;
    foreach ($meta as $elem) {
        if (array_key_exists($elem, $result)) {
            $result = $result[$elem];
        } else {
            // Handle error in some way, maybe throw an exception
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to find a way to copy one file to multiple locations simultaneously
I WANT to find out if a there is a way to check if
I just want to find out if there is any way to block a
What I want to do is find a way to know what the coordinates
i want to update my sqlite database but i cannot find the way to
Could anyone find a way of improving this code a bit? I want to
I want to have a good test setup but, I can't find a way
I've been searching, but can't find a way to do this. I want the
This will probably be obvious but I can't find the best way. I want
I want to find most optimal way to iterate values in key in python.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.