/**
* 测试 shuffleString
*/
function testShuffleString() {
$shuffled = shuffleString("ĄęźćÓ");
if (\mb_strlen($shuffled) != 5) {
throw new \UnexpectedValueException("字符数量无效");
}
if ($shuffled == "ĄęźćÓ") {
throw new \UnexpectedValueException("字符串相同");
}
foreach (["Ą", "ę", "ź", "ć", "Ó"] as $char) {
if (\mb_strpos($shuffled, $char) === false) {
throw new \UnexpectedValueException("字符未找到");
}
}
}
/**
* 打乱字符串
*
* @param $stringValue 要打乱的字符串
* @param string $startWith 打乱 $stringValue 并追加到 $startWith
* @return string 打乱后的字符串
* @author Krzysztof Piasecki<krzysiekpiasecki@gmail.com>
*/
function shuffleString($stringValue, $startWith = "") {
$range = \range(0, \mb_strlen($stringValue));
shuffle($range);
foreach($range as $index) {
$startWith .= \mb_substr($stringValue, $index, 1);
}
return $startWith;
};
testShuffleString();
echo shuffleString("Hello"); // > 'elHol' (类似这样的结果)
echo shuffleString("World!", "Hello "); // > 'Hello do!lrW' (类似这样的结果)