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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T23:23:15+00:00 2026-05-19T23:23:15+00:00

So My problem is: I want to create nested array from string as reference.

  • 0

So My problem is:

  • I want to create nested array from string as reference.
  • My String is "res[0]['links'][0]"
  • So I want to create array $res['0']['links']['0']

I tried:

$result = "res[0]['links'][0]";
$$result = array("id"=>'1',"class"=>'3');
$result = "res[0]['links'][1]";
$$result = array("id"=>'3',"class"=>'9');

when print_r($res)
I see:

<b>Notice</b>:  Undefined variable: res in <b>/home/fanbase/domains/fanbase.sportbase.pl/public_html/index.php</b> on line <b>45</b>

I need to see:

Array
(
    [0] => Array
        (
            [links] => Array
                (
                    [0] => Array
                        (
                            [id] => 1
                            [class] => 3
                        )

                )

        )
    [1] => Array
        (
            [links] => Array
                (
                    [0] => Array
                        (
                            [id] => 3
                            [class] => 9
                        )

                )

        )

)

Thanks for any help.

  • 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-05-19T23:23:16+00:00Added an answer on May 19, 2026 at 11:23 pm

    So you have a description of an array structure, and something to fill it with. That’s doable with something like:

    function array_create(&$target, $desc, $fill) {
    
        preg_match_all("/[^\[\]']+/", $desc, $uu);
           // unoptimized, always uses strings
    
        foreach ($uu[0] as $sub) {
            if (! isset($target[$sub])) {
                 $target[$sub] = array();
            }
            $target = & $target[$sub];
        }
        $target = $fill;
    }
    
    array_create( $res, "[0]['links'][0]", array("id"=>'1',"class"=>'3') );
    array_create( $res, "[0]['links'][1]", array("id"=>'3',"class"=>'9') );
    

    Note how the array name itself is not part of the structure descriptor. But you could theoretically keep it. Instead call the array_create() function with a $tmp variable, and afterwards extract() it to achieve the desired effect:

    array_create($tmp, "res[0][links][0]", array(1,2,3,4,5));
    extract($tmp);
    

    Another lazy solution would be to use str_parse after a loop combining the array description with the data array as URL-encoded string.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a website for training multiple choice questions, the problem is
I want to create an extendable nested structure and it seems like I should
I want to create maintainable code, but this inheritance situation is causing me problems.
Theres is a little problem I want to solve with Haskell: let substitute a
I have a little Java problem I want to translate to Python. Therefor I
I have a simple, real life problem I want to solve using an OO
Django view points to a function, which can be a problem if you want
My problem is that I want a grid that is populated with a set
Problem 1: I have a simple winforms app and I want to DataBind my
I want to build my own custom log4j (network) adapter to solve my problem

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.