En PHP si j'ai un tableau multidimensionnel comme ceci, comment puis-je obtenir le seul tableau qui a la clé highlight = 1, sans utiliser foreach, for, ou n'importe quel type de boucle ? est-ce possible ?
array(
array(
[id] => xxx,
[name] => blah,
[highlight] => 0
),
array(
[id] => yyy,
[name] => blahblah,
[highlight] => 1
),
array(
[id] => zzz,
[name] => blahblahblah,
[highlight] => 0
),
)
merci