">
<?php$Name = array ("Neha", "Ajit", "Rahul", "Ats");$Name = array_flip($Name);echo ($Name[0]);?>
As we are flipping the values, $Name [“Neha”] = 0, $Name [“Ajit”] = 1 and so on.
Previous Question Next Question
Your comments will be displayed only after manual approval.