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?