php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #47891 static method bound to calling object
Submitted: 2009-04-03 16:36 UTC Modified: 2009-04-03 16:52 UTC
Votes:1
Avg. Score:1.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:0 (0.0%)
From: slava at forma dot kharkov dot ua Assigned:
Status: Wont fix Package: Class/Object related
PHP Version: 5.2.9 OS:
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: slava at forma dot kharkov dot ua
New email:
PHP Version: OS:

 

 [2009-04-03 16:36 UTC] slava at forma dot kharkov dot ua
Description:
------------
this code prints instance of object "b" and doesn't throw any errors or exceptions. If a::stat has modificator "static" it says "Notice: Undefined variable: this" and prints null.

Reproduce code:
---------------
class a
{
	public function stat()
	{
	    var_dump($this);
	}
}

class b
{
	public function test()
	{
		a::stat();
	}
}

$b= new b();
$b->test();


Expected result:
----------------
throws some errors or exceptions. 

Actual result:
--------------
prints instance of object "b"

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-04-03 16:52 UTC] colder@php.net
This is expected, :: calls a method of a class using th current context as call context. Hence $this in a::stat is a b object. It will issue a Strict warning.

It's kept that way in PHP5 for PHP4 backward compatibility reasons but it may be cleaned up in PHP6.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Apr 03 23:01:31 2025 UTC