换行会导致代码中断
我有一个文本存储在数据库中(用户在文本区域中输入后)。
文本包含断线标签。
现在我将其导入到我的 php 页面并执行以下操作:
$str += "onclick='openXXX(\"" . nl2br($row->data) . "\");'>"
现在在视图中它破坏了我的代码,因为有
和 \r\n
字符(我认为), 它看起来是:
onclick='openXXX("dsadas<br />
dsada");'
它导致我的代码出现问题,因为有两行而不是一行。我该如何解决?
I have a text stored in database (after it was inputted by user in textarea).
The text includes break line tags.
Now I'm importing it to my php page and do the following thing:
$str += "onclick='openXXX(\"" . nl2br($row->data) . "\");'>"
Now in the view it breaks my code because there are <BR>
and \r\n
chars (I think),
and it looks as:
onclick='openXXX("dsadas<br />
dsada");'
it's causing to problem in my code because there are two line instead of one. How can I solve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
use
Javascript 不接受换行符,您可以考虑这一点:-
除了
PHP_EOL
之外,您可以将其替换为\r\n、\n\r、\n 和 \r< 数组/代码>
Javascript does not take in newline, you can consider this :-
beside
PHP_EOL
, you can replace it with an array of\r\n, \n\r, \n and \r
nl2br 正在添加
,但没有删除 \r 或 \n。尝试:
nl2br is adding the
<br/>
, but not removing the \r or \n.Try:
尝试使用
str_replace('\n', '', nl2br($row->data))
而不仅仅是nl2br($row->data)
。Try
str_replace('\n', '', nl2br($row->data))
instead of justnl2br($row->data)
.