<?php $foo = "bar"; $outer = function () use ( $foo ) { $inner = function () use ( $foo ) { var_dump( $foo ); }; $inner(); }; $outer(); ?>
You have javascript disabled. You will not be able to edit any code.