array krsort function - sort the given array by key reverse order
array-krsort-function-example-in-php.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>array krsort function - sort the given array by key reverse order</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Md Iqbal Hosan">
<meta name="title" content="array krsort function - sort the given array by key reverse order">
<meta name="keywords" content="php, example, code, array, function, krsort">
<meta name="description" content="array krsort function - sort the given array by key reverse order">
<style>
h2, h3, h4{background:#bbb; color:#000069;}
h2{ padding:3px; margin:3px; font-size:21px;}
h3{ padding:2px; margin:2px; font-size:18px;}
h4{ padding:2px; margin:2px; font-size:15px;}
body{ background:#FFFFFb;}
</style>
</head>
<body>
<h2>array krsort function - sort the given array by key reverse order</h2>
<pre>
<?php
/*
-----------------------------------------------------------
les make an array and fill up with some keys and values
-----------------------------------------------------------
*/
$myArray = array("a"=>"apple","c"=>"cat","b"=>"book","z"=>"zoo");
echo "<h4>Output of myArray</h4>";
print_r($myArray);
/*
-------------------------------------------------------------------------------------
we want to sort the array reverse order by using array krsort function
sorting is based on keys rather than values
-------------------------------------------------------------------------------------
*/
krsort($myArray);
echo "<h4>Output of sorted array using array krsort function by keys</h4>";
print_r($myArray);
?>
</pre>
</body>
</html>

No comments:
Post a Comment
leave your comments here..