503f75d08b
These names don't make sense now that we run both suites the same way.
8 linhas
91 B
PHP
8 linhas
91 B
PHP
<?php
|
|
|
|
$a = 1;
|
|
$cl = function () use ($a) {
|
|
return func_get_arg(0);
|
|
};
|
|
var_dump($cl(2));
|