array shuffle function - shuffles or randomizes the order of elements of an array
array-shuffle-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 shuffle function - shuffles or randomizes the order of elements of an array</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 shuffle function - shuffles or randomizes the order of elements of an array">
<meta name="keywords" content="php, example, code, array, function, shuffle">
<meta name="description" content="array shuffle function - shuffles or randomizes the order of elements of an array">
<style>
h2, h3, h4{background:#ccc; color:#000059;}
h2{ padding:3px; margin:3px; font-size:22px;}
h3{ padding:2px; margin:2px; font-size:18px;}
h4{ padding:2px; margin:2px; font-size:16px;}
body{ background:#FFFFFa;}
</style>
</head>
<body>
<h2>array shuffle function - shuffles or randomizes the order of elements of an array</h2>
<pre>
<?php
/*
-----------------------------------------------------------
let's make an array and fill up it with some values
-----------------------------------------------------------
*/
$myArray = array("apple","zoo","cow","book");
echo "<h4>Output of myArray</h4>";
print_r($myArray);
/*
-------------------------------------------------------------------------------------
we want to shuffles the array randomizes order by values by using array shuffle function
-------------------------------------------------------------------------------------
*/
shuffle($myArray);
echo "<h4>Output of shuffled array using array shuffle function by values</h4>";
print_r($myArray);
/*
-------------------------------------------------------
this function also assigns new keys for the array
-------------------------------------------------------
*/
?>
</pre>
</body>
</html>

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