Skip to content

Instantly share code, notes, and snippets.

@maddox
Created July 30, 2008 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maddox/3313 to your computer and use it in GitHub Desktop.
Save maddox/3313 to your computer and use it in GitHub Desktop.
## php
function number_of_items(){
$count = 0;
foreach ($this->queries as $query) {
$count += sizeof($query->items);
}
return $count;
}
## ruby
def number_of_items
queries.inject(0) {|query, count| count += query.items.size }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment