<?php
$student = [“name” => “Krunal”, “course” => “PHP”, “city” => “Ahmedabad”];

arsort($student);

print_r($student);
?>