<?php $colors = ['red' => '#110000', 'blue' => '000011', 'brown' => '#A52A2A', 'maroon' => '#800000']; function assoc_shuffle ( $arr ) { uasort($arr, function ($a, $b) { return rand(-1, 1); }); return $arr; } print_r( assoc_shuffle( $colors ) );
You have javascript disabled. You will not be able to edit any code.