欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php pdo oracle中文乱码的快速解决方法

程序员文章站 2024-02-13 14:08:46
在/etc/profile.d/简历oracle.sh 内容如下在nls_lang设置编码 oracle_home=/usr/lib/oracle/12.1/c...

在/etc/profile.d/简历oracle.sh

内容如下在nls_lang设置编码

oracle_home=/usr/lib/oracle/12.1/client64
c_include_path=/usr/include/oracle/12.1/client64
ld_library_path=$oracle_home/lib
#remember this is the client nls_lang not the server one
nls_lang=french_france.utf8 
export oracle_home ld_library_path nls_lang

然后修改 /etc/init.d/php-fpm

在头部增加

. /etc/profile.d/oracle.sh

. /etc/init.d/functions
. /etc/profile.d/oracle.sh
# check that networking is up.
. /etc/sysconfig/network
# additional environment file
if [ -f /etc/sysconfig/php-fpm ]; then
. /etc/sysconfig/php-fpm
fi
if [ "$networking" = "no" ]
then
exit 0
fi
retval=0
prog="php-fpm"
pidfile=${pidfile-/var/run/php-fpm/php-fpm.pid}
lockfile=${lockfile-/var/lock/subsys/php-fpm}

然后重新启动php即可

以上这篇php pdo oracle中文乱码的快速解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。