如何使用php存储和检索这种格式的字符串,我尝试了以下代码,
$description="Welcome to our "world". Some text here! Some text'here!.";
$description = mysql_real_escape_string($description);
$description = preg_replace("/&[a-z]+;/i"," ",$description);
我使用相同的变量$description
来存储和检索数据库中的值。在我的代码中不打印单引号。
需要检索输出:
Welcome to our "world". Some text here! Some text'here!.
谢谢。