PHP,strip_tags 在文本区域中剥离 \n。怎么阻止呢?
我希望能够接受 \n
或 \r\n
并将它们转换为
以在页。尽管当用户提交包含新段落的文本区域时,strip_tags 函数似乎会将它们直接删除。我能做些什么来将它们保留在字符串中吗?
谢谢!!!
I would like to be able to accept \n
or \r\n
and convert them to <br />
for use in the page. Although when a user submits a text area with new paragraphs, the strip_tags
function seems to strip them right out. Anything I can do to keep these in the string?
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
nl2br
添加BR
换行元素换行字符序列:请注意,刚刚添加了
BR
元素:并防止
strip_tags
要删除P
和BR
标记,请在第二个参数中指定它们:You can use
nl2br
to add theBR
line break element to line break character sequences:Note that the
BR
elements are just added:And to prevent
strip_tags
to removeP
andBR
tags, specify them in the second parameter: