get first key of array php
$firstKey = array_key_first($array);
get first key of array php
$firstKey = array_key_first($array);
php get first element of array
$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors); //blue
$firstKey = key($colors); //2
php get first element of array
<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack); //Remove "orange" from array and return it
print_r($stack);
/** OUTPUT:
Array
(
[0] => banana
[1] => apple
[2] => raspberry
)
*/
?>
php get first element of array
array_pop(array_reverse($array));
php get first element of array
array_shift(array_values($array));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us