Skip to content

Instantly share code, notes, and snippets.

@cebe
Created March 8, 2015 00:31
Show Gist options
  • Save cebe/e48a6a02d1beabd83e3b to your computer and use it in GitHub Desktop.
Save cebe/e48a6a02d1beabd83e3b to your computer and use it in GitHub Desktop.
using array_map to format array data
<?php
$names = array_map(function($attendee) { return $attendee->username; }, $model->attendees);
print_r($names);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment