Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does accessing a null value in PHP as an array not generate a warning? [duplicate]

Tags:

arrays

php

null

In PHP, I have error_reporting set to report everything including notices.

Why does the following not throw any notices, errors or anything else?

$myarray = null;
$myvalue = $myarray['banana'];

Troubleshooting steps:

$myarray = array();
$myvalue = $myarray['banana'];
// throws a notice, as expected ✔

$myarray = (array)null;
$myvalue = $myarray['banana'];
// throws a notice, as expected ✔

$myarray = null;
$myvalue = $myarray['banana'];
// no notice or warning thrown, $myvalue is now NULL. ✘ Why?

It's possible it's a bug in PHP, or I'm just not understanding something about how this works.

like image 392
thomasrutter Avatar asked Nov 22 '22 21:11

thomasrutter


2 Answers

There are three types which it might be valid to use the array derefence syntax on:

  • Arrays
  • Strings (to access the character at the given position)
  • Object (objects implementing the ArrayAccess interface)

For all other types, PHP just returns the undefined variable.

Array dereference is handled by the FETCH_DIM_R opcode, which uses zend_fetch_dimension_address_read() to fetch the element.

As you can see, there is a special case for NULLs, and a default case, both returning the undefined variable.

like image 155
stackfu Avatar answered Dec 24 '22 10:12

stackfu


Usually, when you try to use a value of one type as if it were another type, either an error or warning gets thrown or "type juggling" takes place. For example, if you try to concatenate two numbers with ., they'll both get coerced to strings and concatenated.

However, as explained on the manual page about type juggling, this isn't the case when treating a non-array like an array:

The behaviour of an automatic conversion to array is currently undefined.

In practice, the behaviour that happens when this "undefined behaviour" is triggered by dereferencing a non-array is that null gets returned, as you've observed. This doesn't just affect nulls - you'll also get null if you try to dereference a number or a resource.

like image 29
Narf Avatar answered Dec 24 '22 09:12

Narf