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