Skip to content

Instantly share code, notes, and snippets.

Created September 29, 2017 14:10
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 anonymous/f0a9843936507eaf28e65859bcdad7f3 to your computer and use it in GitHub Desktop.
Save anonymous/f0a9843936507eaf28e65859bcdad7f3 to your computer and use it in GitHub Desktop.
<?php
if( ! function_exists('totalCart')) {
function totalCart($arrayProducts) {
return array_sum(array_column($arrayProducts, 'price'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment