在 ZendFramework 中,如何让 PDO 每次连接时都运行 SET NAMES utf8

2021-12-26 00:00:00 php pdo zend-framework zend-db-table

如何让 PDO 适配器在每次连接时都运行 SET NAMES utf8,在 ZendFramework 中.我正在使用 INI 文件来保存适配器配置数据.我应该在那里添加哪些条目?

How to make PDO adapter run SET NAMES utf8 each time I connect, In ZendFramework. I am using an INI file to save the adapter config data. what entries should I add there?

如果不清楚,我会在我的项目的 config.ini 文件中寻找正确的语法,而不是在 php 代码中,因为我认为这部分是配置代码.

If it wasn't clear, I am looking for the correct syntax to do it in the config.ini file of my project and not in php code, as I regard this part of the configuration code.

推荐答案

Itay,

一个很好的问题.幸运的是,答案很简单:

A very good question. Fortunately for you the answer is very simple:

database.params.driver_options.1002 = "SET NAMES utf8"

1002 是常量 PDO::MYSQL_ATTR_INIT_COMMAND 的值

1002 is the value of constant PDO::MYSQL_ATTR_INIT_COMMAND

你不能在 config.ini 中使用常量

You can't use the constant in the config.ini

相关文章