Skip to content

Instantly share code, notes, and snippets.

@adrienbrault
Created November 3, 2011 11:01
Show Gist options
  • Save adrienbrault/1336261 to your computer and use it in GitHub Desktop.
Save adrienbrault/1336261 to your computer and use it in GitHub Desktop.
<?php
$entities = array(
new User(1, 'John'),
new User(2, 'Steve'),
);
$ids = array_map(function ($entity) {
return $entity->getId();
}, $entities);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment