php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #34439 $this present when it shouldn't
Submitted: 2005-09-09 17:09 UTC Modified: 2005-09-09 17:15 UTC
From: rganogork at gmail dot com Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 4.4.0 OS: gentoo linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: rganogork at gmail dot com
New email:
PHP Version: OS:

 

 [2005-09-09 17:09 UTC] rganogork at gmail dot com
Description:
------------
$this should not be defined in the context of a static function call.

Reproduce code:
---------------
class A {
    function func() {
        echo get_class($this);
    }
}

class B {
    function x() {
        A::func();
    }
}

$b = new B();
$b->x();


Expected result:
----------------
.. nothing .. (object not present/instantiated/defined)

Actual result:
--------------
b

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-09-09 17:15 UTC] derick@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: Sat Dec 21 15:01:29 2024 UTC