使用同一数组中的关联数组值

时间:2009-10-31 07:30:43

标签: php arrays associative-array

我正在尝试从同一个数组中访问关联数组的键和值。如果我的阵列中有3对。我可以在第三个something中使用值{} 1}和other的值吗?

another

这个想法是另一个人的价值将是“有价值的东西”。

这可能吗?有没有办法完成同样的事情?

3 个答案:

答案 0 :(得分:6)

这样的事情怎么样

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

$gar["another"] = $gar["something"] . $gar["other"];

答案 1 :(得分:4)

如果你在多行上使用它应该没问题:

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

你甚至可以把上面的序列放在循环中。

答案 2 :(得分:0)

我的问题也谈到了类似的问题。希望有所帮助! :)
PHP - Accessing array element within the same array