How to solve the Chinese garbled problem of php pdo oci

藏色散人
Release: 2023-03-10 10:32:01
Original
2246 people have browsed it

php pdo oci Chinese garbled solution: first set the environment variable in php-fpm; then add the content "env[ORACLE_HOME] =/usr/lib/oracle/11.2/client64/..."; Finally, restart php-fpm.

How to solve the Chinese garbled problem of php pdo oci

The operating environment of this article: Windows 7 system, php5.4.19 version, DELL G3 computer

php uses PDO_OCI to connect to oracle, garbled code under php-fpm , the solution to the normal command line

win7+nginx1.5.9+php5.4.15+pdo_oci
Copy after login

After completion, the result is normal.

Upload test.

centos5.9+nginx1.5.9+php5.4.14+pdo_oci
Copy after login

Result: The command line is normal, and the fast_cgi mode is normal

So upgrade the php version to the latest php5.4.33 and reinstall

Result: The command line is normal and not garbled, the fast_cgi connection is normal, but the garbled characters.

Cannot be found on various Google and Baidu Solution.

Install another php version php5.4.19 that is consistent with the official environment

Result: fast_cgi connection is still normal, but garbled.

There must be a problem with the environment variables .

Finally, I found an article saying that environment variables can be set in php-fpm, so give it a try. Add a few lines at the end:

env[ORACLE_HOME]        =/usr/lib/oracle/11.2/client64/
env[LD_LIBRARY_PATH]    =/usr/lib/oracle/11.2/client64/lib/
env[NLS_LANG]           ="AMERICAN_AMERICA.AL32UTF8"
Copy after login

Restart php-fpm

Result: Everything is normal.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to solve the Chinese garbled problem of php pdo oci. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
pdo
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template