<?php
$arrayNewKeys = [
"first_name" => "Sudhir",
"last_lname" => "Gour",
"new_age" => 27,
"city" => "Jaipur",
"state" => "Rajasthan",
"country" => "India"
];
$arrayValues = ["Sudhir" , "Gour" , "Jaipur" , "India"];
// print_r(sort($arrayNewKeys));
// sort($arrayNewKeys);
sort($arrayValues);
print_r($arrayValues);
To embed this program on your website, copy the following code and paste it into your website's HTML: