PHP get index of last inserted item in array

Here is a linear (fastest) solution:

end($a);
$last_id=key($a);

Leave a Comment