Добавление суффикса к каждой строке [PHP и textarea HTML]

поздравил
Можно ли добавить суффикс к каждой строке из textarea, используя PHP?
Я знаю, что мы можем получить текст из textarea в переменные, а затем? Как добавить ввод- (новая строка) в качестве переменной?

1

Решение

Это работает:

<form method="GET">
<textarea name="inputFromTextArea">This is line 1
This is line 2
...
This is line 4</textarea>
<input type="submit">
</form>

<?php

/* Convert text with lines to an array (\r\n = Carriage return & Newline on Windows machines*/
$lines = explode("\n", $_GET['inputFromTextArea']);

/* debug information to show the contents of $lines */
echo "<pre>";
print_r($lines);
echo "</pre>";

/* Loop over all lines and manipulate each line */
foreach($lines as $lineNr => $line){
$lines[$lineNr] = trim($line,"\r") . " a suffix here "; // remove possible Carriage returns & concatenate stuff
}

/* debug information to show the contents of $lines */
echo "<pre>";
print_r($lines);
echo "</pre>";

?>

Подробнее о возврате каретки & Новые строки здесь: \ r \ n = Разница между \ n и \ r?

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]