convert associative array to variables php code example
Example 1: php transform associative array to array
$array = array_values($array);
Example 2: php define variables from array associative
<?php
$array = [
'key1' => 'foo',
'key2' => 'bar',
];
extract($array);
echo $key1; //print foo
echo $key2; //print bar
?>