<?php
/** a sample function */
function sum($a, $b) { return $a + $b; }
echo sum(...[10, 20]);
PHP Peachpie Snippet argument unpacking