php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #72240 self in anonymous function indicates inherited class
Submitted: 2016-05-19 02:52 UTC Modified: 2016-05-19 03:07 UTC
From: dqneoo at gmail dot com Assigned:
Status: Duplicate Package: *General Issues
PHP Version: 5.6.21 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: dqneoo at gmail dot com
New email:
PHP Version: OS:

 

 [2016-05-19 02:52 UTC] dqneoo at gmail dot com
Description:
------------
"self" in anonymous function indicates child class, behaving the same way as "static"

Test script:
---------------
class A
{
    public static function func()
    {
        return function ()  {
            return new self();
        };
    }
}

class B extends A {}

$b = B::func();
echo get_class($b());

Expected result:
----------------
A

Actual result:
--------------
B

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-05-19 03:07 UTC] requinix@php.net
-Status: Open +Status: Duplicate
 [2016-05-19 03:07 UTC] requinix@php.net
Duplicate of bug #69568 which apparently says this could only be fixed for PHP 7.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Nov 24 03:01:32 2024 UTC