将文本区域的内容转换为数组

时间:2009-09-09 08:37:47

标签: php html textarea

我有一个带有html文本区域的表单。 我想在php中获取此文本区域的内容,以便每行可以存储在一个数组中。我尝试使用'/ n'进行内爆。但它不起作用。我怎么能这样做。

这是我的代码

$notes = explode('/n',$_POST['notes']);   

3 个答案:

答案 0 :(得分:9)

你需要使用它:

$notes = explode("\n", $_POST['notes']);

(反斜杠,不是正斜杠,双引号而不是单引号)

答案 1 :(得分:7)

Palantir的解决方案仅在行以\ n结尾时才有效(Linux默认行结尾)。

例如

$text     = "A\r\nB\r\nC\nD\rE\r\nF";    
$splitted = explode( "\n", $text );

var_dump( $splitted );

将输出:

array(5) {
  [0]=>
  string(2) "A "
  [1]=>
  string(2) "B "
  [2]=>
  string(1) "C"
  [3]=>
  string(4) "D E "
  [4]=>
  string(1) "F"
}

如果没有,你应该使用它:

$text     = "A\r\nB\r\nC\nD\rE\r\nF";
$splitted = preg_split( '/\r\n|\r|\n/', $text );
var_dump( $splitted );

或者这个:

$text     = "A\r\nB\r\nC\nD\rE\r\nF";
$text     = str_replace( "\r", "\n", str_replace( "\r\n", "\n", $text ) );
$splitted = explode( "\n", $text );
var_dump( $splitted );

我认为最后一个会更快,因为它不使用正则表达式。

例如

$notes = str_replace(
    "\r",
    "\n",
    str_replace( "\r\n", "\n", $_POST[ 'notes' ] )
);

$notes = explode( "\n", $notes );

答案 2 :(得分:0)

不要将PHP_EOL用于表格的textarea到数组,使用它:

array_values(array_filter(explode("\n", str_replace("\r", '', $_POST['data']))))