up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to access an associative array's key and value from within the same array. If I have 3 pairs in my array. Can I use the value of let's say the values of something and other within the third one another?

$gar = array("something" => "something value", 
             "other" => "other value", 
             "another" => something . other 
       );

The idea is that another's value will be "something valueother value".

Is this possible? Is there a way to accomplish the same thing?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

It should be fine if you use it on multiple lines like this:

$gar = array();
$gar["something"] = "something value";
$gar["other"] = "other value";
$gar["another"] = $gar["something"].$gar["other"];

You could even put the above sequence in a loop then.

link|improve this answer
I went for this, just because it's a little cleaner looking, although both work perfectly. – drummer Oct 31 '09 at 10:30
feedback

how about just something like this

$gar = array("something" => "something value", 
         "other" => "other value"
   );

$gar["another"] = $gar["something"] . $gar["other"];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.