类
<?php
$b = (new class('hello') {
public function __construct($a) {
echo $a;
}
public function test() {
echo 'test';
}
});
$b->test();
函数
(function($a) {
echo $a;
})(1111);
类
<?php
$b = (new class('hello') {
public function __construct($a) {
echo $a;
}
public function test() {
echo 'test';
}
});
$b->test();
函数
(function($a) {
echo $a;
})(1111);