我有一个数组,我正在尝试使用 PHP 进行迭代并从中获取一个值。我所有的“custom_attributes”键都是一样的。
Array
(
[items] => Array
(
[0] => Array
(
[sku] => SCB20
[custom_attributes] => Array
(
[0] => Array
(
[attribute_code] => ages
[value] => 17
)
[1] => Array
(
[attribute_code] => description
[value] => description data
)
[2] => Array
(
[attribute_code] => image
[value] => cl2eojpu9.jpg
)
)
)
)
)
例如,假设我只想回显 value 的值,其中 attribute_code 值等于年龄。我怎么做?
牛魔王的故事
元芳怎么了