我正在使用一个简单的表单将字符串写入数据库,但是大引号(在检索时)被显示为特殊字符。
到目前为止,我已经尝试将表排序规则更改为 UTF-8 以及使用 CodeIgniter Typography 类:
1. alter table test.vocab convert to character set utf8 collate
utf8_unicode_ci;
2. $this->load->library('typography');
$data['item'] = $this->typography->auto_typography($data['item'], FALSE);
不过,这并没有帮助。这是输出的样子:
如果需要,我会发布更多代码。请帮忙。