Jump to content

adding elements to arrays using variables as keys


madshadow

Recommended Posts

hey everyone. I've come up with a bit of code below but i'm having problems with the end result. Specifically, the line

$masterarray[$key] = $finalsum;

I can't figure out how to add elements to an array using a key that comes from a variable. i would really appreciate any help on this..

[code]
//test section with functions

//going to be passed each element of the secondarray
function wordsum ($variable) {


$letterarray = str_split($variable);


foreach($letterarray as $letter) {


switch ($letter) {
    case "a":
        $wordsize[]= "1";
        break;

    case "b":
        $wordsize[]= "2";
        break;

    default :
        $wordsize[]= "0";


        } //end switch

$totalofword = array_sum($wordsize);



                            } //end foreach letter

return $totalofword;

//print_r($wordsize);
//$masterarray[$counter] = $totalofword;


} //end function wordsum


foreach($secondarray as $word) {//for each word

$finalsum = wordsum($word);

print(wordsum($word) . "<bR>");

$key = array_search($word, $secondarray);
print("<b>" . "$key" . "</b>");

$masterarray[$key] = $finalsum;





}//end foreach word


print("<br>" . "this is the final output" . "<br>");
print_r(array_values($masterarray));

//
//end test section with functions

[/code]
Link to comment
Share on other sites

[b]$array[$key] = $value[/b] should work. This code:
[code]<?php

$key = 'red';
$value = 'apple';
$key2 = 'purple';
$value2 = 'grape';

$array[$key] = $value;
$array[$key2] = $value2;

echo '<pre>';
print_r($array);
echo '</pre>';

?>[/code]
Would print:
[code]Array
(
    [red] => apple
    [purple] => grape
)[/code]
Maybe you can tell us what you are trying to do with it?
And also $totalofword = array_sum($wordsize) shouldn't be in the foreach loop (if you are trying to do what I think).
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.