当我回显时,如何用换行符替换 \r\n ?

发布于 2024-10-16 03:26:15 字数 498 浏览 3 评论 0原文

我使用此代码保护我的字符串以将其插入数据库:

function protect($string){

    $string = mysql_real_escape_string($string);

    return $string;
}

然后我使用此代码取消保护它,以便我可以从数据库中回显它:

function echoprotect($string){

    $string = nl2br($string);
    $string = stripslashes($string);

    return $string;
}

nl2br 似乎不起作用,我不知道为什么。我得到的输出是:

您好,内容等...

而不是:

你好

内容等...

I am protecting my string using this code to insert it into the database:

function protect($string){

    $string = mysql_real_escape_string($string);

    return $string;
}

I then unprotect it using this code so that I can echo it out from the database:

function echoprotect($string){

    $string = nl2br($string);
    $string = stripslashes($string);

    return $string;
}

The nl2br doesn't seem to work and I don't know why. The output I get is:

HellornrnThe content ect...

instead of:

hello

the content ect...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧时光的容颜 2024-10-23 03:26:15

来自 mysql_real_escape_string 手册:

mysql_real_escape_string()调用MySQL的库函数
mysql_real_escape_string,其中
在以下内容前面加上反斜杠
字符:\x00、\n、\r、 \、'、"
和 \x1a。

所以 nl2br() 忽略了转义的 \n 和 \r,我认为。

From the mysql_real_escape_string manual:

mysql_real_escape_string() calls MySQL's library function
mysql_real_escape_string, which
prepends backslashes to the following
characters: \x00, \n, \r, \, ', "
and \x1a.

So nl2br() is ignoring the escaped \n's and \r's, methinks.

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