Skip to content

Instantly share code, notes, and snippets.

@mizner
Last active January 25, 2018 14:08
Show Gist options
  • Save mizner/a1b86f4285de9209be9221e4984137b4 to your computer and use it in GitHub Desktop.
Save mizner/a1b86f4285de9209be9221e4984137b4 to your computer and use it in GitHub Desktop.
<?php
array_reduce($arr, function ($result, $item) {
$result[$item->term_id] = $item->name;
return $result;
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment