<?php function foo($a, $b) {} foo(...$array); // Normal call foo(...@$array); // Hide Undefined variable, but trips on null! foo(@...$array); // @ doesn't work on operators, so not on ... foo(@...@$array); // same as above, but it looks cool!
You have javascript disabled. You will not be able to edit any code.