Skip to content

Instantly share code, notes, and snippets.

@vdubyna
Created September 16, 2013 12:38
Show Gist options
  • Select an option

  • Save vdubyna/6580165 to your computer and use it in GitHub Desktop.

Select an option

Save vdubyna/6580165 to your computer and use it in GitHub Desktop.
<?php
$array = array(4,3,2,1);
function sum ($arr) {
if (empty($arr)) {
return 0;
} else {
return $arr[0] + sum(array_slice($arr, 1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment