Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active June 1, 2024 06:42
Show Gist options
  • Save Kcko/3c5dbbd655bfe2c41018bddfd933ea83 to your computer and use it in GitHub Desktop.
Save Kcko/3c5dbbd655bfe2c41018bddfd933ea83 to your computer and use it in GitHub Desktop.
<?php
// rest ... a,b,c,d,e => []
function concatenate($transform, ...$strings) {
$string = '';
foreach($strings as $piece) {
$string .= $piece;
}
return($transform($string));
}
echo concatenate("strtoupper", "I'm ", 20 + 2, " years", " old."); // I'M 22 YEARS OLD.
// spread ... []
function add($a, $b, $c) {
return $a + $b + $c;
}
$operators = [2, 3];
echo add(1, ...$operators); // 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment