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 7996575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:44:23+00:00 2026-06-04T14:44:23+00:00

Found this post that helped me out: Split a string to form multidimensional array

  • 0

Found this post that helped me out: Split a string to form multidimensional array keys?

Anyhow that works like a charm when it comes to string values, but if array keys contain integers then it misses these.

Here is the demo:

i got set of keys:

Array
(
    [0] => variable_data
    [1] => 0
    [2] => var_type
)

And method to create e nested array

function constructArray( &$array_ptr, $keys, $value )
    {
        // extract the last key
        $last_key = array_pop ( $keys );

        // walk/build the array to the specified key
        while ( $arr_key = strval( array_shift ( $keys ) ) )
        {
            if ( !array_key_exists ( strval($arr_key), $array_ptr ) )
            {
                $array_ptr[ strval($arr_key) ] = array ( );
            }
            $array_ptr = &$array_ptr[ strval($arr_key) ];
        }

        // set the final key
        $array_ptr[ $last_key ] = '$value';
    }

And i use it in this way:

$keys = array(
    'variable_data',
    '0',
    'var_type'
);
    $clean_arr = array();
    constructArray($clean_arr, $keys, 'asd');

but the output looks like this:

Array
(
    [variable_data] => Array
        (
            [var_desc] => $value
        )

)

As you see, variable_data index is not containing 0 index. I have tested allmost everything that i might know to work but it didnt. Anyone who has better clue ?

  • 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-04T14:44:25+00:00Added an answer on June 4, 2026 at 2:44 pm

    Solution

    Here’s the function that does the magic:

    function constructArray( &$array_ptr, $keys, $value )
        {
            // extract the last key
            $last_key = array_pop ( $keys );
    
            foreach ( $keys as $arr_key )
            {
                 unset($keys[$arr_key]);
                 if ( !array_key_exists ( strval($arr_key), $array_ptr ) )
                {
                    $array_ptr[ strval($arr_key) ] = array ( );
                }
                $array_ptr = &$array_ptr[ strval($arr_key) ];
            }
    
            // set the final key
            $array_ptr[ $last_key ] = $value;
        }
    

    Usage:

    $keys = array('variable_data', '0', 'var_desc');
    $clean_arr = array();
    constructArray($clean_arr, $keys, 'asd');
    
    // Output
    Array
    (
        [variable_data] => Array
            (
                [0] => Array
                    (
                        [var_desc] => asd
                    )
    
            )
    
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found this post that shows how to pass multiple check box selections to
I recently found this post . It basically says that Eclipse has a modified
like in this post here by exemple I have found this blog but in
I found this post: What's the Best Way to Shuffle an NSMutableArray? And as
I found this post on Crystal Reports Cutting Off Text in PDF , but
I wanted to use groovy for a little ftp script and found this post
I have set a property across threads before and I found this post Cross-thread
I was reading through this thread: Hidden Features of JavaScript? and found this post:
I found this in the standard as the post-condition for the rehash function in
I haven't found similiar post so I'm asking this. Let's say I defined somewhere

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.