Can any one please tell me how to remove the array key from array without removing the key value. For example:
This is my value:
$arr = array("1"=>2,"2"=>5,"3"=>10);
What I want is:
$arr = array(2,5,10);
If both equal how the default keys are assigned?