php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #31331 $this behaviour is wrong
Submitted: 2004-12-29 04:30 UTC Modified: 2004-12-29 10:53 UTC
From: mgkimsal at conduit-it dot com Assigned:
Status: Not a bug Package: Class/Object related
PHP Version: 5.0.2 OS: mandrake
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: mgkimsal at conduit-it dot com
New email:
PHP Version: OS:

 

 [2004-12-29 04:30 UTC] mgkimsal at conduit-it dot com
Description:
------------
$this behaviour is wrong...

It's showing the context of the calling object instead of its own object (which doesn't exist if called statically).

Reproduce code:
---------------
<?
class myclass {

        function __construct() {
        }
        function __destruct() {
        }
        public function bar($foo) {
                print_r($this);
        }
}

class foo {
  public $prop = 'property';
  function docode() {
    myclass::bar('foo');
  }
}

$f = new foo();
$f->docode();

?>

Expected result:
----------------
I would expect to see nothing, or perhaps info on the mycode class.

Actual result:
--------------
I see info on the foo class.  :(

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-12-29 10:53 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: Thu Apr 25 22:01:29 2024 UTC