php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #42575 Access to undefined array index doesn't generate a notice
Submitted: 2007-09-06 10:30 UTC Modified: 2007-09-06 10:38 UTC
From: adamrbar at gmail dot com Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 5.2.4 OS: Windows Vista
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: adamrbar at gmail dot com
New email:
PHP Version: OS:

 

 [2007-09-06 10:30 UTC] adamrbar at gmail dot com
Description:
------------
I have a class with simple property, without any given type or value. Trying to access this property as it will be an array (i.e. getting its index, which is obviously undefined), should generate a notice when E_STRICT is set - but it doesn't. Specifying the property type as array or adding other index generates notice as expected.

Reproduce code:
---------------
error_reporting(E_ALL | E_STRICT);

class test
{
  private $bla;
  
  public function __construct()
  {
    var_dump(empty($this->bla));
    var_dump($this->bla['fff']);
  }
}

$x = new test();

Expected result:
----------------
bool(true)
Notice: Undefined index: fff in [...]
NULL

Actual result:
--------------
bool(true)
NULL

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-09-06 10:38 UTC] johannes@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 09:01:27 2024 UTC