Shuffle Array

Randomly shuffle the elements of an array (Fisher-Yates algorithm).

Code

General
shuffle($arr);
return $arr;

Parameters

Array to shuffle

Server

More PHP Snippets