Kohana 3 - In View®显示无效字符

发布于 2024-12-13 02:38:58 字数 230 浏览 2 评论 0原文

我们正在将整个网站转换为 UTF-8。在大多数情况下,我们没有遇到任何问题,但目前 ® 符号在视图中显示为无效字符,但如果该值在控制器中输出,则它会正确显示。

我们已确保在主视图中包含元属性:

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

是否有我们缺少的设置?

We are in the process of converting to UTF-8 throughout our site. For the most part we've not had any problems, but presently the ® symbol shows up in the views as an invalid character, but when if the value is output in the Controller then it is displays correctly.

We have made certain to include the meta attribute in the main view:

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

Is there a setting that we are missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§对你不离不弃 2024-12-20 02:38:59

您的文件应采用 UTF-8 编码(UTF-8 不含 BOM,ANSI 为 UTF-8)。

注意:Kohanas 的 HTML::chars() 使用 Kohana::$charset 来决定编码时使用哪个字符集,因此请使用它而不是 htmlspecialchars()

Your files should be UTF-8 encoded (UTF-8 without BOM, ANSI as UTF-8).

Note: Kohanas' HTML::chars() uses Kohana::$charset to decide which charset to use when encoding, so use it instead of htmlspecialchars().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文