explode textarea php (at new lines)

前端 未结 4 929
后悔当初
后悔当初 2020-12-08 01:04

can I do:

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

and have it work on all platforms? (The question I am asking is will it ever be \\r\\n

4条回答
  •  长情又很酷
    2020-12-08 01:14

    You can do something like this:

    $text = trim($_POST['textareaname']);
    $text = nl2br($text);
    

提交回复
热议问题