<?phpfunction utf_shuffle($str) { $show = preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY); shuffle($show); return join("", $show);}?>