php array get index of key code example
Example 1: get first key of array php
$firstKey = array_key_first($array);
Example 2: get array key php
array_keys ($array);
// It returns an array
// more informations at https://www.php.net/manual/fr/function.array-keys.php (fr)