File "array_find.php"
Full Path: /home/analogde/www/Freebox/CHESS_ON/array_find.php
File size: 574 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$cars = [
[ "id" => "1",
"name" => "Tata",
"model" => "2022T"
],
[
"id" => "2",
"name" => "Ford",
"model" => "2022F"
],
[
"id" => "3",
"name" => "Porshe",
"model" => "2022P"
]
];
$key = array_search(3, array_column($cars, 'id'));
$key_value = $cars[$key];
foreach($key_value as $value){
echo "? ". $value;
echo "<br>";
}
?>