这是我的PDO课程的一部分。我需要将utf-8
用于希伯来语,但当我将ATTR_PERSISTENT
设置为true
时,输出文本将显示为??????
如果我将ATTR_PERSISTENT
切换为{ {1}}输出正确。
false
之间是否存在任何冲突:
public function __construct() {
// Set DSN
$dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname;
// Set options
$options = array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_PERSISTENT => true
);
// Create a new PDO instanace
try {
$this->dbh = new PDO($dsn, $this->user, $this->pass, $options);
}
// Catch any errors
catch (PDOException $e) {
$this->error = $e->getMessage();
}
}
和
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'
答案 0 :(得分:2)
我可以找到答案here。
在DSN中设置它是唯一正确的方法,所以我将代码更改为:
public function __construct() {
// Set DSN
$dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname .';charset=utf8';
// Set options
$options = array(
//PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8",
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_PERSISTENT => true
);
// Create a new PDO instanace
try {
$this->dbh = new PDO($dsn, $this->user, $this->pass, $options);
}
// Catch any errors
catch (PDOException $e) {
$this->error = $e->getMessage();
}
}
现在输出正确。