ID: 43982
Comment by: root at mantoru dot de
Reported By: php at ert dot org dot ua
Status: Open
Bug Type: *Compile Issues
Operating System: WinXP
PHP Version: 5.2.5
New Comment:
Accessing offsets is only supported for strings and arrays.
As the manual states: "Accessing by [] or {} to variables of other type
silently returns NULL."
See also http://php.net/language.types.string and bug #41195.
Previous Comments:
------------------------------------------------------------------------
[2008-01-30 10:24:19] php at ert dot org dot ua
Description:
------------
When I try to index some scalar value (integer, for example), I want to
get error message, but I have normal NULL result.
Reproduce code:
---------------
<?
error_reporting(0xFFFFFFFF);
$a = 1;
if ($a[5])
echo 'yes';
else
echo 'no';
?>
Expected result:
----------------
Error, warning or notice
Actual result:
--------------
no
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=43982&edit=1