<?php $i = function ($j) { $i = $j + 4; $i++; return $i; }; $j = 6; echo $i($j); ?>
10
syntax error
nothing
11
6