gpt4 book ai didi

PHP 如果 array_key_exists,变量等于数组值 : How?

转载 作者:可可西里 更新时间:2023-11-01 00:10:41 24 4
gpt4 key购买 nike

我组合了两个数组创建了以下数组,命名为 $group_wages_array:

Array ( [1] => 500 [4] => 44 [6] => 80 [3] => 11.25 )

我正在尝试测试数组键是否与 X 匹配,将变量设置为它的值。这是我拥有的:

注意:整个过程是在一个 while 循环中执行的,所以 $thegroup['group_id'] 的值会改变。对于此示例,我已将其值设置为“6”。

$thegroup['group_id'] = "6" // This particular group (for simplicity)

if (array_key_exists($thegroup['group_id'], $group_wages_array)) {

$this_wages = // Need this to be 80... how do I do it?

}

那么,如何让 $this_wages 等于键值呢?

最佳答案

您只需使用数组中的键即可获取它:

$thegroup['group_id'] = "6" // This particular group (for simplicity)

if (array_key_exists($thegroup['group_id'], $group_wages_array)) {
$this_wages = $group_wages_array[$thegroup['group_id']];
}

此外,数组键不是 0、1、2 等,因为您在 Array ( [1] => 500 [4] => 44 [6] => 80 [3] = > 11.25 )

关于PHP 如果 array_key_exists,变量等于数组值 : How?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7746898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com