我想在每一行前面添加一个随机文本,如下所示:
前:
One
Two
Three
后:
Love One
My Two
Other Three
更新:抱歉造成混淆,我的意思是“之前”文本是 textarea 提交的文本,所以它在 $_POST 值中,我想要像“之后”文本一样的结果。简单来说,如下代码:假设前面的文本低于 $_POST['message'] 值,我想回显该值,但前面有随机文本。
我试试这个,但只适用于第一行而不是另一行:
$rand = array("Love", "My", "Other");
$message = trim(@$_POST['message']) ;
$message = str_replace(" ","+",$message);//Convert the space to +
$modifiedTextAreaText = str_replace( "\n", "\n$rand", $message);//This One Not Working
echo $rand[array_rand($rand, 1)]. $modifiedTextAreaText ;//This one working only for the first line
谢谢