Skip to content

Instantly share code, notes, and snippets.

@marrek13
Created April 22, 2022 16:36
Show Gist options
  • Save marrek13/f57b1b526efe886a911d7e68b327a59a to your computer and use it in GitHub Desktop.
Save marrek13/f57b1b526efe886a911d7e68b327a59a to your computer and use it in GitHub Desktop.
Fold PHP
<?php
function fold($array, $callback, $initial=null)
{
$acc = $initial;
foreach($array as $a)
$acc = $callback($acc, $a);
return $acc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment