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]
[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).

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.