What would happen to the variables introduced in the statements block, rather than in `use()`? Will they still be available outside of the block?
```php
use () {
$number = 42;
}
var_dump($number); // what happens here?
```
Also, is an empty list of vars in `use` (as in the example above) allowed?
--
Best regards,
Bruce Weirdan mailto:
[email protected]
