Created
April 17, 2018 07:00
-
-
Save Sivamanim/3a99c8a678d7aa05d90ac4635f3b7d27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PHP 5.5+ | |
$items = array( | |
array('cost' => 2), | |
array('cost' => 3), | |
array('cost' => 5) | |
); | |
echo array_sum(array_column($items, 'cost')); // output 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
awesome!