Home >Backend Development >PHP Tutorial >PDF to word converter 12.0 registration code php PDO Chinese garbled solution
// Method one:
PDO::__construct($dsn, $user, $pass, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8';"));
// Method two:
PDO:: __construct($dsn, $user, $pass);
PDO::exec("SET NAMES 'utf8';");
Both methods can solve the problem. The principles are the same. Whichever you use depends on your preference
The above introduces the solution to the 12.0 registration code of pdf to word converter php PDO Chinese garbled code, including the content of the 12.0 registration code of pdf to word converter. I hope it will be helpful to friends who are interested in PHP tutorials.