Jump to content

[SOLVED] loop in nested associative array question


alpineedge3

Recommended Posts

hello,

 

I have an associative array that looks like this:

 

Array
(
    [1940s] => Array
        (
            [tag_id] => 8
            [count] => 1
            [fontsize] => 16px
        )

    [academic] => Array
        (
            [tag_id] => 13
            [count] => 1
            [fontsize] => 16px
        )
...
}

 

I need to be able to change the $array[val]['fontsize'] in a loop. I don't think I'm doing it right, because when I print_r after the loop the fontsize values are not changed. However, the loop echos the desired strings.

 

foreach($tagArray as $array => $val){
$zscoreInt = round($val['count']-$stdev);
$$val['fontsize'] = $avgFontsize + $zscoreInt . 'px';
        echo $$val['fontsize'] . '<br />';
}

 

What's wrong? Thanks.

 

 

Link to comment
Share on other sites

Chnage your code to this:

foreach($tagArray as $array => $val)
{
$zscoreInt = round($val['count'] - $stdev);

$tagArra[$array]['fontsize'] = $avgFontsize + $zscoreInt . 'px';
}

 

When using $val, this is a new instance, when ever you update this variable it wont affect the array. What you'll have to do is refer to the array instead.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.