Doctrine 查询的自动 iconv

发布于 2024-09-12 15:59:34 字数 45 浏览 7 评论 0原文

如何设置 Doctrine 在构建查询和获取数据时自动运行 iconv()?

How do I set up Doctrine to automatically run iconv() when building a query and fetching data?

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

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

发布评论

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

评论(3

最舍不得你 2024-09-19 15:59:34

为什么不告诉 RDBMS 您正在使用 UTF-8 发送数据呢? Doctrine_Connection 有一个 setCharset 方法:

$connection->setCharset('utf8');

Why don't you just tell the RDBMS you're using to send the data in UTF-8? Doctrine_Connection has a setCharset method for this:

$connection->setCharset('utf8');
﹏半生如梦愿梦如真 2024-09-19 15:59:34

好吧,我希望没有人在生活中遇到字符集转换问题,并且除了 UTF8 之外的所有字符集很快就会成为过去。无论如何,只是为了对我自己的问题提供一些反馈。我通过编写一个扩展 Record Hydrator 的自定义 Hydrator 并重写 Filter 基类的一些 symfony prcessValues 方法来解决,如下所示:

abstract class BaseFormFilterDoctrine extends sfFormFilterDoctrine
{
  public function setup()
  {
  }
  public function processValues($values)
  {
    $values = parent::processValues($values);
    $charset = strtolower(str_replace('-','',$this->getTable()->getConnection()->getCharset()));
    if ($charset != 'utf8')
    {
      foreach ($values as $key => $value)
      {
        if (isset($value['text']))
        {
          $values[$key]['text'] = iconv('utf8', $charset, $value['text']);
        }
      }    
    }

    return $values;
  }
}

Well, I hope nobody ever has to face charset conversion problems in their lives and all charsets except UTF8 will soon be a thing of the past. Anyway, just to give some feedback to my own question. I solved by writing a custom hydrator that extends Record hydrator and by overriding some symfony prcessValues methods of Filter base classes like this:

abstract class BaseFormFilterDoctrine extends sfFormFilterDoctrine
{
  public function setup()
  {
  }
  public function processValues($values)
  {
    $values = parent::processValues($values);
    $charset = strtolower(str_replace('-','',$this->getTable()->getConnection()->getCharset()));
    if ($charset != 'utf8')
    {
      foreach ($values as $key => $value)
      {
        if (isset($value['text']))
        {
          $values[$key]['text'] = iconv('utf8', $charset, $value['text']);
        }
      }    
    }

    return $values;
  }
}
原野 2024-09-19 15:59:34

setCollat​​ion() 是相应的。

setCollation() is the corresponding one.

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