The array-key-exists tag has no wiki summary.
8
votes
3answers
434 views
Why is array_key_exists 1000x slower than isset on referenced arrays?
I have found that array_key_exists is over 1000x slower than isset at check if a key is set in an array reference. Does anyone that has an understanding of how PHP is implemented explain why this is ...
2
votes
2answers
66 views
array_key_exists for compound key in array
How do I check to see if a compound key exists with array_key_exists such as
$myarr['ind1']['ind2']
Would like to see if the key ['ind1']['ind2'] exists in $myarr.
I googled this and looked at ...
1
vote
4answers
92 views
check if a value exists in array
I am trying this code to check if a value exists in an array.
$arr = array ('2' => '0', '3' => '0.58');
$num=3;
if (array_key_exists($num, $arr)) {
echo (array_key_exists($num, $arr)); ...
1
vote
4answers
196 views
array_key_exists($key, $array) vs !empty($array[$key])
I've seen a lot of people do the former, is there any performance benefit doing one vs the other? Or is it just an eye candy? I personally use the latter every time as it is shorter and personally ...