在 Zend Form 中,如何在文本字段中设置特殊字符?字符在数据库中保存为 & aacute; 等等。在我的 application.ini 中,我使用 UTF 设置了数据库连接,如下所示:
resources.db.params.charset = "utf8"
这些表设置为 utf8_general_ci。在标题中:
<meta http-equiv="Content-Type" content="text/html; charset=UTF=8" />
下面的一个例子:
$form->getElement('title')->setValue($Row['title']);
当我打开网页时,它显示 & aacute; 就像在数据库中一样。