<?php $f = function () use (&$a) { $a = [1]; }; var_dump($a); $x = new class ($c) { function __construct(&$d) { $d = []; } }; var_dump($c);
You have javascript disabled. You will not be able to edit any code.