我正在尝试从同一个数组中访问关联数组的键和值。如果我的阵列中有3对。我可以在第三个something
中使用值{} 1}和other
的值吗?
another
这个想法是另一个人的价值将是“有价值的东西”。
这可能吗?有没有办法完成同样的事情?
答案 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