Created
March 8, 2015 00:31
-
-
Save cebe/e48a6a02d1beabd83e3b to your computer and use it in GitHub Desktop.
using array_map to format array data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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