私はこの配列を持っています:
$ Fruit = array()
$ Fruit [$species] [$ property] = $ value
Array
(
[Apple] => Array
(
[Green] => 4
[Spots] => 3
[Red] => 3
[Spots] => 2
)
次に、2番目の配列にキーが存在するかどうかを検索します...
私はこれを試しました:
if (!array_key_exists($property, $Fruit->$species))
しかし、それは機能しません...
配列の配列内を検索する方法を知っている人はいますか...?
よろしく、Thijs