-1
如何洗牌&回聲2 2行中的隨機單詞?如何隨機播放和回聲2從2行隨機字?
例如我的代碼
$lines1 = "one, two, three, four, five";
$lines2 = "aa, bb, cc, dd, ee";
$array=explode(",",$lines1, $lines2);
shuffle($array);
$newstring = implode($array,"");
echo substr($newstring, 0, 1);
$lines1
$lines2
原始字符串
呼應2個字的選擇性洗牌從line1
和line2
我想是這樣的
two
這個詞來從line1
dd
這個詞來自line2
輸出two dd
OR ee three
工程,但它根本不工作 – nasir
@nasir如何工作,但不工作? –
現在的工作我添加額外的代碼 '$ myArray的=爆炸( 「 」$數組1 [0]「,」 $數組2 [0]);' '洗牌($ myarray的);' ' echo $ myarray [0]。「」。 $ myArray的[1];' – nasir