first item in array php
$firstItem = array_shift($array);
php get first element of array
$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors); //blue
$firstKey = key($colors); //2
array search by key in php
$arr = array(
"one" => 1,
"two" => 2,
"three" => 3,
"seventeen" => 17
);
function find($mot){
global $arr; // this is global variable
$ok=false;
foreach ($arr as $k => $v)
{
if($k==$mot){
return $v; $ok=true; // or return true;
}
}
if(ok==false){ return -1; } // or return false;
}
//call function
echo find("two");
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