D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
nikic
/
php-parser
/
test
/
code
/
prettyPrinter
/
expr
/
Filename :
closure.test
back
Copy
Closures ----- <?php $closureWithArgs = function ($arg1, $arg2) { $comment = 'closure body'; }; $closureWithArgsAndVars = function ($arg1, $arg2) use($var1, $var2) { $comment = 'closure body'; }; ----- $closureWithArgs = function ($arg1, $arg2) { $comment = 'closure body'; }; $closureWithArgsAndVars = function ($arg1, $arg2) use($var1, $var2) { $comment = 'closure body'; };