<?php $param = 666; function meaningOfLife() { $param = 1; $func = function() use(&$param) { $param = 42; }; $func(); print $param; } meaningOfLife();
You have javascript disabled. You will not be able to edit any code.