如何从 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
或ee three