如何在句子中混淆单词?

时间:2018-02-25 16:59:54

标签: php

我有一个简单的表格,我可以输入一个句子。当我提交表格时,我想要洗牌(不是字符)。这是我到目前为止所做的,但它并没有混合使用:

if (isset($_POST['sentence'])) {

    $original_sentence = $_POST['sentence'];

} else {

    die ('Give me a sentence!');

}


$words = explode( " / ", $original_sentence );


foreach($words as $word) {
    array_rand($words); 
    echo $word;
}

1 个答案:

答案 0 :(得分:1)