For this we can use array_reverse() function.

BY Best Interview Question ON 13 Jan 2019

Example

$array = array("1"=>"Best","2"=>"Interview","3"=>"Question");
print_r(array_reverse($array));

// OUTPUT Array ( [3] => Question [2] => Interview[1] => Best)