换行会导致代码中断

发布于 2024-12-17 17:05:22 字数 374 浏览 1 评论 0原文

我有一个文本存储在数据库中(用户在文本区域中输入后)。

文本包含断线标签。

现在我将其导入到我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

人间☆小暴躁 2024-12-24 17:05:22

使用

str_replace('\r\n', '', nl2br($row->data))

use

str_replace('\r\n', '', nl2br($row->data))
多像笑话 2024-12-24 17:05:22

Javascript 不接受换行符,您可以考虑这一点:-

str_replace(PHP_EOL, '', nl2br($row->data));

除了 PHP_EOL 之外,您可以将其替换为 \r\n、\n\r、\n 和 \r< 数组/代码>

Javascript does not take in newline, you can consider this :-

str_replace(PHP_EOL, '', nl2br($row->data));

beside PHP_EOL, you can replace it with an array of \r\n, \n\r, \n and \r

維他命╮ 2024-12-24 17:05:22

nl2br 正在添加
,但没有删除 \r 或 \n。

尝试:

$str += "onclick='openXXX(\"" . str_replace(array("\r","\n"),'',nl2br($row->data))  .  "\");'>"

nl2br is adding the <br/>, but not removing the \r or \n.

Try:

$str += "onclick='openXXX(\"" . str_replace(array("\r","\n"),'',nl2br($row->data))  .  "\");'>"
无名指的心愿 2024-12-24 17:05:22

尝试使用 str_replace('\n', '', nl2br($row->data)) 而不仅仅是 nl2br($row->data)

Try str_replace('\n', '', nl2br($row->data)) instead of just nl2br($row->data).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文