View file angrm/inc/func.php

File size: 157B
<?php
function utf_shuffle($str) {
    $show = preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY);
    shuffle($show);
    return join("", $show);
}
?>