Doctrine - 加载带有法语字符的 YAML 固定装置

发布于 2024-10-04 01:56:59 字数 414 浏览 2 评论 0原文

我的 Doctrine 1.2 作为钩子集成在 CodeIgniter 内部,我知道我的字符集是 utf8,排序规则为 utf8_unicode_ci。

我有两个 YAML 文件,一个用于创建数据库及其表,另一个用于加载一些测试数据。我的数据可以包含法语口音(çéïë...)。在我的 scama.yml 中,我已经正确指定了排序规则和字符集:

options:
  type: INNODB
  charset: utf8
  collate: utf8_unicode_ci

我仔细检查了 phpMyAdmin 中的设置,一切都正确。

当我从命令行运行我的教义脚本以将我的固定装置加载到我的一张桌子时,所有法国口音都被垃圾取代了!

我是否缺少设置或配置,或者 Doctrine 中是否存在错误?

My Doctrine 1.2 is integrated inside CodeIgniter as a hook and I know that my char-set is utf8 with collation utf8_unicode_ci.

I have two YAML files, one for creating the DB and its tables and one to load some test data. My data can contain French accents (çéïë...). In my schama.yml I have correctly specified the collation and char-set:

options:
  type: INNODB
  charset: utf8
  collate: utf8_unicode_ci

I double checked the settings in phpMyAdmin, everything is correct.

When I run my doctrine script from commandline to load my fixture to my one of my tables, all the French accents are replaced by junk!

Am I missing a setting or configuration or is there a bug in Doctrine?

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

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

发布评论

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

评论(1

长梦不多时 2024-10-11 01:56:59

您应该在 /config/database.php Doctrine 连接中具有:

// Load the Doctrine connection
$doctrine = Doctrine_Manager::connection($db['default']['dsn'], $db['default']['database']);

要解决编码问题,您必须添加此行:

$doctrine->exec('set names utf8');

You should have in your /config/database.php Doctrine connection:

// Load the Doctrine connection
$doctrine = Doctrine_Manager::connection($db['default']['dsn'], $db['default']['database']);

To fix the problem with the encoding you have to add this line:

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