Skip to content

Instantly share code, notes, and snippets.

@AleksMeshkov
Created February 6, 2014 13:36
Show Gist options
  • Save AleksMeshkov/8844250 to your computer and use it in GitHub Desktop.
Save AleksMeshkov/8844250 to your computer and use it in GitHub Desktop.
<?php
function rsum($v, $w)
{
$v += $w;
return $v;
}
function rmul($v, $w)
{
$v *= $w;
return $v;
}
$a = array(1, 2, 3, 4, 5);
$x = array();
$b = array_reduce($a, "rsum");
$c = array_reduce($a, "rmul", 10);
$d = array_reduce($x, "rsum", "No data to reduce");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment