������

PHP 7 ��ʼ֧�������ࡣ ����������ã����Դ���һ���Եļ򵥶���

<?php

// PHP 7 ֮ǰ�Ĵ���
class Logger
{
    public function 
log($msg)
    {
        echo 
$msg;
    }
}

$util->setLogger(new Logger());

// ʹ���� PHP 7+ ��Ĵ���
$util->setLogger(new class {
    public function 
log($msg)
    {
        echo 
$msg;
    }
});

���Դ��ݲ�����������Ĺ�������Ҳ������չ��extend�������ࡢʵ�ֽӿڣ�implement interface�����Լ���������ͨ����һ��ʹ�� trait��

<?php

class SomeClass {}
interface 
SomeInterface {}
trait 
SomeTrait {}

var_dump(new class(10) extends SomeClass implements SomeInterface {
    private 
$num;

    public function 
__construct($num)
    {
        
$this->num $num;
    }

    use 
SomeTrait;
});

�������̻������

object(class@anonymous)#1 (1) {
  ["Command line code0x104c5b612":"class@anonymous":private]=>
  int(10)
}

�����౻Ƕ�׽���ͨ Class �󣬲��ܷ�������ⲿ�ࣨOuter class���� private��˽�У���protected���ܱ����������������ԡ� Ϊ�˷����ⲿ�ࣨOuter class��protected ���Ի򷽷������������ extend����չ�����ⲿ�ࡣ Ϊ��ʹ���ⲿ�ࣨOuter class���� private ���ԣ�����ͨ����������������

<?php

class Outer
{
    private 
$prop 1;
    protected 
$prop2 2;

    protected function 
func1()
    {
        return 
3;
    }

    public function 
func2()
    {
        return new class(
$this->prop) extends Outer {
            private 
$prop3;

            public function 
__construct($prop)
            {
                
$this->prop3 $prop;
            }

            public function 
func3()
            {
                return 
$this->prop2 $this->prop3 $this->func1();
            }
        };
    }
}

echo (new 
Outer)->func2()->func3();

�������̻������

6

������ͬһ�������࣬�������Ķ�����������ʵ����

<?php
function anonymous_class()
{
    return new class {};
}

if (
get_class(anonymous_class()) === get_class(anonymous_class())) {
    echo 
'same class';
} else {
    echo 
'different class';
}

�������̻������

same class

Note:

ע�⣬�������������ͨ�����渳��ģ���������ʾ�� ����ʵ�ֵ�ϸ�ڣ���Ӧ��ȥ�������������

<?php
echo get_class(new class {});

�������̵���������ڣ�

class@anonymous/in/oNi1A0x7f8636ad2021