Heim >Backend-Entwicklung >PHP-Tutorial >php pdo oracle中文乱码 linux php连接oracle php oracle 操作使用 php操作 oracle 教

php pdo oracle中文乱码 linux php连接oracle php oracle 操作使用 php操作 oracle 教

WBOY
WBOYOriginal
2016-07-29 08:49:091353Durchsuche

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

内容如下在NLS_LANG设置编码

<span>1</span> ORACLE_HOME=/usr/lib/oracle/<span>12.1</span>/<span>client64
</span><span>2</span> C_INCLUDE_PATH=/usr/include/oracle/<span>12.1</span>/<span>client64
</span><span>3</span> LD_LIBRARY_PATH=$ORACLE_HOME/<span>lib
</span><span>4</span><span>#remember this is the client NLS_LANG not the server one
</span><span>5</span> NLS_LANG=<span>FRENCH_FRANCE.UTF8 
</span><span>6</span> export ORACLE_HOME LD_LIBRARY_PATH NLS_LANG

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

在头部增加

. /etc/profile.d/oracle.<span>sh<br></span>

. /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}

<span> </span>

然后重新启动php即可

以上就介绍了php pdo oracle中文乱码,包括了ORACLE,php方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn