Skip to content

Instantly share code, notes, and snippets.

@Spriz
Created March 20, 2019 14:51
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 Spriz/eceb62e87427830cc72bb14d8945c443 to your computer and use it in GitHub Desktop.
Save Spriz/eceb62e87427830cc72bb14d8945c443 to your computer and use it in GitHub Desktop.
<?php
$posts = [
['id' => 1, 'author_id' => 1],
['id' => 2, 'author_id' => 1],
['id' => 3, 'author_id' => 2],
];
$authorIds = (new Collection($posts))->extract('author_id')->toList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment