<?php function($a = 1) use (&$a) {}; var_dump($a); // NULL <---- Why? function (&$b = 1) {}; var_dump($b); // PHP Notice: Undefined variable: b
You have javascript disabled. You will not be able to edit any code.