Skip to content

Instantly share code, notes, and snippets.

@opdavies
Last active October 30, 2018 07:29
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 opdavies/84cf40faffa1aa884ac0743665d1e374 to your computer and use it in GitHub Desktop.
Save opdavies/84cf40faffa1aa884ac0743665d1e374 to your computer and use it in GitHub Desktop.
<?php
// https://twitter.com/codebyjeff/status/1057057070460022784
$array1 = ['col1' => 2, 'col2' => 5];
$array2 = ['col1' => 4, 'col2' => 1];
$array_total = collect($array1)->zip($array2)
->map->sum();
var_dump($array_total->all());
// [0 => 6, 1 => 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment