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
元の文字列
line1
とからの 2 単語の選択的シャッフルをエコーline2
私はこのようなものが欲しい
two
この言葉の由来line1
dd
この言葉の由来line2
出力two dd
ORee three