欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

发现一个诡异的bug,不知何解

程序员文章站 2023-12-28 15:34:46
...
textarea中换行使用\r\n(ckeditor也是),可是却不能用str_replace()将\r\n进行处理,不知道为什么。

// textarea中换行采用\r\n,并且用str_replace方法不能搞掉!!
//test1表只有id、textarea两个字段,且只有id=1的一条记录。
require_once 'connect_text.php';
require_once 'show_message.php';
if($_POST['text']){
$text = str_replace('\r\n', '', $_POST['text']);          //尝试搞掉,测试结果没有去掉\r\n
$query="UPDATE test1 SET textarea = '$text' WHERE id = '1'";
$result = mysql_query($query);
if($result){
echo "";
}
}
$query = "SELECT textarea FROM test1 WHERE id = '1'";
$result = mysql_query($query);
$row = mysql_fetch_array($result);
?>



//尝试搞掉,测试结果没有去掉\r\n





上一篇:

下一篇: