What will be the value of $a?

Posted by: Pdfprep Category: 200-710 Tags: , ,

After performing the following operations:

$a= array(‘a’, ‘b’, ‘c’);

$a= array_keys(array_flip($a));

What will be the value of $a?
A . array(‘c’, ‘b’, ‘a’)
B . array(2, 1, 0)
C . array(‘a’, ‘b’, ‘c’)
D . None of the above

Answer: C

Leave a Reply

Your email address will not be published.