<?php function foo (string &...$in): string { return implode(', ', $in); } $x = 1; $y = 2; $z = 3; echo foo($x, $y, $z);
You have javascript disabled. You will not be able to edit any code.