After performing the following operations:
$a = array('a', 'b', 'c');
$a = array_keys(array_flip($a));
What will be the value of $a?
Select an option, then click Submit answer.
-
○
array('c', 'b', 'a') B. array(2, 1, 0)
-
○
array('a', 'b', 'c')
-
○
None of the above