Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Key of null variable equals null not error

Tags:

php

We've got variable that for some reason we think would be an array, but it happens to be null.

$var = null

We try to get a value from this variable.

$value = $var['key']

This doesn't throw an error, my intuition is that it would though. What instead happens is that $value is now also null. Is there a particular reason that the above line doesn't throw an error?

like image 409
Jonathan Avatar asked Sep 18 '15 10:09

Jonathan


1 Answers

There is "almost duplicate": Why does accessing array index on boolean value does not raise any kind of error?

the code there looks like:

$var = false;
$value = $var['key'];

and the answer is - it's just document

Accessing variables of other types (not including arrays or objects implementing the appropriate interfaces) using [] or {} silently returns NULL.

So in this string (I am talking about your case, $var = null, but with boolean would be the same explanation, just replace NULL to boolean)

$var['key']

$var is the variable of type NULL, and accessing variable of type NULL (other type that array or object) using [] silently returns NULL.

like image 119
Andriy Kuba Avatar answered Nov 07 '22 13:11

Andriy Kuba