<?php $fruits = [ ['name' => 'banana', 'color' => 'yellow' , 'shape' => 'cylinder'], ['name' => 'apple', 'color' => 'red' , 'shape' => 'sphere'], ['name' => 'orange', 'color' => 'orange' , 'shape' => 'sphere'], ]; var_export( array_any( $fruits, fn($row) => $row['name'] === 'apple' ) ); echo "\n---\n"; var_export( array_all( $fruits, fn($row) => $row['name'] === 'apple' ) ); echo "\n---\n"; var_export( array_find_key( $fruits, fn($row) => $row['name'] === 'apple' ) ); echo "\n---\n"; var_export( array_find( $fruits, fn($row) => $row['name'] === 'apple' ) );
You have javascript disabled. You will not be able to edit any code.