gpt4 book ai didi

php - 在二维数组中搜索... php

转载 作者:行者123 更新时间:2023-12-04 14:49:00 24 4
gpt4 key购买 nike

我有这个数组:

$水果=数组()

$Fruit[$species][$property] = $value

Array
(
[Apple] => Array
(
[Green] => 4
[Spots] => 3
[Red] => 3
[Spots] => 2
)

现在我想搜索第二个数组中是否存在键...

我试过这个:

if (!array_key_exists($property, $Fruit->$species))

但是没用...

有人知道如何在数组的数组中搜索...吗?

问候,泰斯

最佳答案

array_key_exists($property, $Fruit[$species])

-> 用于对象,[] 用于写入和读取数组。

顺便说一句,除非您的值可以是 null,否则我建议使用 isset 而不是 array_key_exists:

isset($Fruit[$species][$property])

应该更直观。

关于php - 在二维数组中搜索... php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4757336/

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