First Need to Create Arrays
1.Create Array:
$subray("Mathematics"=>"85", "Science"=>"70", "English"=>"92");jects = ar
<?php
$subjects = array("Mathematics"=>"85", "Science"=>"70", "English"=>"92");
ksort($subjects);
foreach($subjects as $x => $x_value) {
echo " Key=" . $x . ", Value=" . $x_value ;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>PHP Sorting Arrays</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="text-center">
<h1>PHP Sorting Arrays</h1>
</div>
<h2>1.ksort()</h2>
<h2>Sort Array elements in Ascending Order, According to Key </h2>
<div class="well">
<?php
$subjects = array("Mathematics"=>"85", "Science"=>"70", "English"=>"92");
ksort($subjects);
foreach($subjects as $x => $x_value) {
echo "<h4> Key=" . $x . ", Value=" . $x_value ."</h4>";
}
?>
</div>
<br>
</div>
</body>
</html>