php get array element code example
Example 1: get specific key value from array php
$ids = array_column($users, 'id');
Example 2: php define variables from array associative
<?php
$array = [
'key1' => 'foo',
'key2' => 'bar',
];
extract($array);
echo $key1; //print foo
echo $key2; //print bar
?>