Find Index

Find the index of the first element matching a condition.

Code

General
$result = -1;
foreach ($arr as $i => $item) {
    if ($item['id'] === $targetId) { $result = $i; break; }
}
return $result;

Parameters

Array of objects

ID to find

Server

More PHP Snippets