7 lines
68 B
PHP
7 lines
68 B
PHP
|
<?php
|
||
|
|
||
|
$a = new A;
|
||
|
|
||
|
$b = function () use ($a) {
|
||
|
echo $a->b();
|
||
|
};
|