我只是尝试使用Codeigniter escape_str函数,它的工作正常,但是当我尝试获取数据并在前面显示然后显示一些额外的代码。任何方式来替换所有额外的符号。
这是功能
$content = $this->db->escape_str($content);
我正在尝试从HTML texarea输入以下数据
Hello all how are you?
I'm from cox's bazar. see you again.
但是当我试图回应它时,我就是这样的
Hello all how are you?\r\n\r\nI\'m from cox\'s bazar. see you again.
它应该与我的输入相同。请帮我解决这个问题。感谢
答案 0 :(得分:0)
您可以使用html_escape()
CodeIgniter功能:
http://www.codeigniter.com/user_guide/general/common_functions.html?highlight=html_escape#html_escape