Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sivamanim/3a99c8a678d7aa05d90ac4635f3b7d27 to your computer and use it in GitHub Desktop.
Save Sivamanim/3a99c8a678d7aa05d90ac4635f3b7d27 to your computer and use it in GitHub Desktop.
// PHP 5.5+
$items = array(
array('cost' => 2),
array('cost' => 3),
array('cost' => 5)
);
echo array_sum(array_column($items, 'cost')); // output 10
@viveklc
Copy link

viveklc commented Apr 2, 2024

awesome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment