Skip to content

Instantly share code, notes, and snippets.

@tuki0918
Created January 13, 2016 13:46
Show Gist options
  • Save tuki0918/b7f726180485a18fe591 to your computer and use it in GitHub Desktop.
Save tuki0918/b7f726180485a18fe591 to your computer and use it in GitHub Desktop.
<?php
$arr = [
(object) ['name' => 'aaa'],
(object) ['name' => 'bbb'],
(object) ['name' => 'ccc'],
];
foreach ($arr as $v) {
var_dump($v->name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment