PHP在textarea的每一行的开头和结尾添加参数

时间:2015-06-12 12:56:32

标签: php

我不太熟悉PHP,我需要创建一个函数来读取并添加一些字符串到我的textarea的每一行。

示例textarea

AAA
BBB
CCC

我需要的是

somestringAAAotherstring
somestringBBBotherstring
somestringCCCotherstring

并在发送" post"。

后将其显示为输出

编辑:

我的表单是

<FORM METHOD ="POST">

<textarea rows="30" name="content"></textarea>

<INPUT TYPE = "Submit" VALUE = "Send">

</FORM>

是的,问题是&#34;怎么做?&#34;

1 个答案:

答案 0 :(得分:1)

$text = trim($_POST['textareaname']);
$textAr = explode("\n", $text);
$textAr = array_filter($textAr, 'trim'); // remove any extra \r characters left behind

foreach ($textAr as $lines) {
    $line = $sometext . $lines . $someOtherText;
//proceed furthur
}