How does PHP index associative arrays?

蹲街弑〆低调 提交于 2019-11-27 15:37:59
Uchiha

Within your user defined array you are assigning the keys manually your array means as

array(1 => 'One',3, 2 => 'Two');//[1] => One [2] => 3 [2] => Two

Here we have two identical index and as per DOCS its mentioned that the last overwrite the first

Syntax "index => values", separated by commas, define index and values. index may be of type string or integer. When index is omitted, an integer index is automatically generated, starting at 0. If index is an integer, next generated index will be the biggest integer index + 1.

Note that when two identical index are defined, the last overwrite the first.

In order to filter this case you can simply make some changes as

array(1 => 'One',2 =>'Two',3) // array ([1] => One [2] => Two [3] => 3)
array(3,1 => 'One',2 =>'Two') //array ([0] => 3 [1] => One [2] => Two)
array(1 => 'One',2 => 3 ,3 =>'Two')// array([1] => One [2] => 3 [3] => Two)

DOCS CHECK PARAMETERS

In php The key is optional. If it is not specified, PHP will use the increment of the largest previously used integer key

Like if :-

$a = array( 1 => 'One', 3, 3 => 'Two');
var_dump($a);

output will :-

array(3) {
  [1]=>
  string(3) "One"
  [2]=>
  int(3)
  [3]=>
  string(3) "Two"
}

Here for second value one is increment from previous value i.e 2.

Now

say array is :-

$a = array( '1' => 'One', '3', '3' => 'Two');
var_dump($a);

Output will

array(3) {
  [1]=>
  string(3) "One"
  [2]=>
  string(1) "3"
  [3]=>
  string(3) "Two"
}

Here also Here for second value one is increment from previous value i.e 2.

Now third case:-

If array is :-

$a = array( '1' => 'One', '1' => 'two' , '1' => 'Three');
var_dump($a);

Output will:-

array(1) {
  [1]=>
  string(5) "Three"
}

This is because associative array keep value as map and if key is present it overwrite value in this case 1 is overwrite 2 time as a result out is three

In your case :-

$a = array( '1' => 'One', '3', '2' => 'Two');
print_r($a);

Output is

Array
(
    [1] => One
    [2] => Two
)

this is because :-

first key map will:- '1' => 'one'

again

php will keep second value as '2' => '3'

Now as in array '2' is assigned as 'Two', value become

'2' => 'Two' which means it is overwriting.

Viral

@Uchiha is right, just as an include to that answer, if you want to avoid this problem, keep members of an array (which are not having keys specified) at the last


$a = array( '1' => 'One', '3', '2' => 'Two');

will dump

array (size=2)
  1 => string 'One' (length=3)
  2 => string 'Two' (length=3)


and keeping members with undefined keys at last
$a = array( '1' => 'One', '2' => 'Two', '3');

will dump

array (size=3)
  1 => string 'One' (length=3)
  2 => string 'Two' (length=3)
  3 => string '3' (length=1)


will avoid issues you are facing.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!