我有一个简单的表格,我可以输入一个句子。当我提交表格时,我想要洗牌(不是字符)。这是我到目前为止所做的,但它并没有混合使用:
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;
}
答案 0 :(得分:1)