Skip to content

Instantly share code, notes, and snippets.

@pensiero
Last active August 23, 2016 09:45
Show Gist options
  • Save pensiero/07fd62c86c2f2ab7816a3a2b6880a722 to your computer and use it in GitHub Desktop.
Save pensiero/07fd62c86c2f2ab7816a3a2b6880a722 to your computer and use it in GitHub Desktop.
<?php
$cars = [
[
'engine' => 'gasoline',
'doors' => 3,
'color' => 'red',
'cc' => '1200',
'release' => '2016',
],
[
'engine' => 'diesel',
'doors' => 5,
'color' => 'blue',
'cc' => '1200',
'release' => '2015',
],
[
'engine' => 'gasoline',
'doors' => 3,
'color' => 'red',
'cc' => '1400',
'release' => '2014',
],
[
'engine' => 'gasoline',
'doors' => 1,
'color' => 'green',
'cc' => '1800',
'release' => '2013',
],
[
'engine' => 'gasoline',
'doors' => 5,
'color' => 'red',
'cc' => '1000',
'release' => '2012',
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment