Skip to content

Instantly share code, notes, and snippets.

@adibhanna
Last active May 23, 2018 23:46
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 adibhanna/81a3affa1fdec770916c29d74ffe8320 to your computer and use it in GitHub Desktop.
Save adibhanna/81a3affa1fdec770916c29d74ffe8320 to your computer and use it in GitHub Desktop.
Software Developer
return array_filter($data, function($e) {
if((new DateTime($e->created_at))->format('M') == 'Jul') {
return [
'name' => $e->name,
'price' => $e->price,
'created_at' => $e->created_at
];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment