0

我试图插入除键盘以外的双引号

例如:

声明:Ashley 正在准备考试。在她的评论中,她指出“语义”表示“意义”,并思考这与语义记忆有何关系。第二次审查表明她

插入mysql数据库后转换为以下内容:

阿什利正在准备考试。在她的复习中,她指出“语义”表示“意义”,并思考这与语义记忆有何关系。一个

我已将所有表和数据库转换为 utf-8 排序规则,并且还使用了 utf-8 的元标记,但没有成功。有人可以识别问题。

4

1 回答 1

1

我总是这样做:

$db = new mysqli('localhost','root','','db');
$cod = $db->query("SET NAMES 'utf8'"); //Set the encoding

这段代码对我有用(刚刚):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ab</title>
<script type="text/javascript">


</script>
</head>

<body>
<?
$db = new mysqli('localhost','root','','test');
$cod = $db->query("SET NAMES 'utf8'");
$result = $db->query("INSERT INTO `test`(`string`) VALUES ('".addslashes("“teststring“")."')");
$result = $db->query("SELECT `string` FROM `test` WHERE string='".addslashes("“teststring“")."'");

$result= $result->fetch_assoc();
echo $result['string'];

?>
</body>
</html>
于 2013-10-09T09:39:55.927 回答