Created
April 15, 2019 19:57
-
-
Save stefpe/e6ead7b8f1946bfabaf237770e9dac76 to your computer and use it in GitHub Desktop.
flattened array with a simple value
This file contains 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 | |
$array = [ | |
[ | |
'name' => 'Misty', | |
'age' => 15 | |
], | |
[ | |
'name' => 'Charlie', | |
'age' => 40 | |
] | |
]; | |
var_dump(array_column($array, 'age')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment