Authentication Services
Command Line Specific Extensions
Compression and Archive Extensions
Cryptography Extensions
Database Extensions
Date and Time Related Extensions
File System Related Extensions
Human Language and Character Encoding Support
Image Processing and Generation
Mail Related Extensions
Mathematical Extensions
Non-Text MIME Output
Process Control Extensions
Other Basic Extensions
Other Services
Search Engine Extensions
Server Specific Extensions
Session Extensions
Text Processing
Variable and Type Related Extensions
Web Services
Windows Only Extensions
XML Manipulation
GUI Extensions
Keyboard Shortcuts
?
This help
Next menu item
Previous menu item
Previous man page
Next man page
Scroll to bottom
Scroll to top
Goto homepage
Goto search
(current page)
Focus search box
<?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)
Nesting an anonymous class within another class does not give it access to
any private or protected methods or properties of that outer class. In order
to use the outer class' protected properties or methods, the anonymous class
can extend the outer class. To use the private properties of
the outer class in the anonymous class, they must be passed through its
constructor:
<?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
();
Поданий вище приклад
виведе:
<?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 that anonymous classes are assigned a name by the engine, as
demonstrated in the following example. This name has to be regarded an
implementation detail, which should not be relied upon.
<?php
echo
get_class
(new class {});
Поданий вище приклад виведе щось
схоже на:
class@anonymous/in/oNi1A0x7f8636ad2021
Anonymous
¶
10 years ago
Below three examples describe anonymous class with very simple and basic but quite understandable example
$ano_class_obj = new class{
public $prop1 = 'hello';
public $prop2 = 754;
const SETT = 'some config';
public function getValue()
return 'some returned value';
public function getValueWithArgu($str)
return 'returned value is '.$str;
echo "\n";
var_dump($ano_class_obj);
echo "\n";
echo $ano_class_obj->prop1;
echo "\n";
echo $ano_class_obj->prop2;
echo "\n";
echo $ano_class_obj::SETT;
echo "\n";
echo $ano_class_obj->getValue();
echo "\n";
echo $ano_class_obj->getValueWithArgu('OOP');
echo "\n";
echo "\n";
$ano_class_obj_with_func = ano_func();
function ano_func()
return new class {
public $prop1 = 'hello';
public $prop2 = 754;
const SETT = 'some config';
public function getValue()
return 'some returned value';
public function getValueWithArgu($str)
return 'returned value is '.$str;
echo "\n";
var_dump($ano_class_obj_with_func);
echo "\n";
echo $ano_class_obj_with_func->prop1;
echo "\n";
echo $ano_class_obj_with_func->prop2;
echo "\n";
echo $ano_class_obj_with_func::SETT;
echo "\n";
echo $ano_class_obj_with_func->getValue();
echo "\n";
echo $ano_class_obj_with_func->getValueWithArgu('OOP');
echo "\n";
echo "\n";
$arg = 1; $config = [2, false]; $ano_class_obj_with_arg = ano_func_with_arg($arg, $config);
function ano_func_with_arg($arg, $config)
return new class($arg, $config) {
public $prop1 = 'hello';
public $prop2 = 754;
public $prop3, $config;
const SETT = 'some config';
public function __construct($arg, $config)
$this->prop3 = $arg;
$this->config =$config;
public function getValue()
return 'some returned value';
public function getValueWithArgu($str)
return 'returned value is '.$str;
echo "\n";
var_dump($ano_class_obj_with_arg);
echo "\n";
echo $ano_class_obj_with_arg->prop1;
echo "\n";
echo $ano_class_obj_with_arg->prop2;
echo "\n";
echo $ano_class_obj_with_arg::SETT;
echo "\n";
echo $ano_class_obj_with_arg->getValue();
echo "\n";
echo $ano_class_obj_with_arg->getValueWithArgu('OOP');
echo "\n";
echo "\n";
ytubeshareit at gmail dot com
¶
9 years ago
Anonymous classes are syntax sugar that may appear deceiving to some.
The 'anonymous' class is still parsed into the global scope, where it is auto assigned a name, and every time the class is needed, that global class definition is used. Example to illustrate....
The anonymous class version...
function return_anon(){
return new class{
public static $str="foo";
$test=return_anon();
echo $test::$str; $another=get_class($test); echo $another::$str; class I_named_this_one{
public static $str="foo";
function return_not_anon(){
return 'I_named_this_one';
$clzz=return_not_anon();echo $clzz::$str;
sebastian.wasser at gmail ¶7 years ago
I wanted to share my findings on static properties of anonymous classes.
So, given an anonymous class' object generating function like this:
function nc () {
return new class {
public static $prop = [];
Getting a new object and changing the static property:
$a = nc();
$a::$prop[] = 'a';
var_dump($a::$prop);
= nc();
$b::$prop[] = 'b';
var_dump($b::$prop); assert($a::$prop === $b::$prop);