当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-06 10:40:38 浏览: 评论:0 

下面小编就为大家带来一篇php pdo oracle中文乱码的快速解决方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考,一起跟随小编过来看看吧。

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

内容如下在NLS_LANG设置编码

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

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

在头部增加

  1. . /etc/profile.d/oracle.sh 
  2.  
  3. . /etc/init.d/functions 
  4. . /etc/profile.d/oracle.sh 
  5. # Check that networking is up. 
  6. . /etc/sysconfig/network 
  7. # Additional environment file 
  8. if [ -f /etc/sysconfig/php-fpm ]; then 
  9. . /etc/sysconfig/php-fpm 
  10. fi 
  11. if [ "$NETWORKING" = "no" ] 
  12. then 
  13. exit 0 
  14. fi 
  15. RETVAL=0 
  16. prog="php-fpm" 
  17. pidfile=${PIDFILE-/var/run/php-fpm/php-fpm.pid} 
  18. lockfile=${LOCKFILE-/var/lock/subsys/php-fpm} 

然后重新启动php即可。

Tags: php pdo oracle

分享到: