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

发布于 2024-08-09 01:45:20 字数 360 浏览 3 评论 0原文

我正在尝试从同一数组中访问关联数组的键和值。如果我的数组中有 3 对。我可以在第三个 another 中使用 somethingother 的值吗?

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

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

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

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

万人眼中万个我 2024-08-16 01:45:20

像这样怎么样

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

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

how about just something like this

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

$gar["another"] = $gar["something"] . $gar["other"];
你是年少的欢喜 2024-08-16 01:45:20

我的问题也谈到了类似的问题。希望有帮助! :)
PHP - 访问同一数组中的数组元素

my question speaks about the analogous problem too. Hope that helps! :)
PHP - Accessing array element within the same array

难理解 2024-08-16 01:45:20

如果您像这样在多行上使用它应该没问题:

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

您甚至可以将上面的序列放入循环中。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文