Voting

: max(three, three)?
(Example: nine)

The Note You're Voting On

team at concerty dot com
6 months ago
About searching in multi-dimentional arrays using array_column, to add to the notes from "turabgarip at gmail dot com", here is a workaround to find the correct key:

$array_column = 'name';
$searchValue = 'my value ;
$result = array_filter($myArray, function ($subarray) use ($array_column, $searchValue) {
return isset($subarray[$array_column]) && $subarray[$array_column] === $searchValue;
});

echo key($result);

<< Back to user notes page

To Top