为了账号安全,请及时绑定邮箱和手机立即绑定

PHP增加OCI8模块

标签:
PHP

1. 根据实际情况选择版本,下载oracle客户端压缩包和sdk压缩包

http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html

以下为 10.0.2 为例

2. 将client和sdk解压到同一个目录并放到操作系统的一个指定目录 比如 /soft/instantclient_10_2

3. 执行如下命令,将oracle环境变量加入到 profile

cat >>/etc/profile<<EOF  
#_php_oci_instantclient    
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'    
export PATH=\$PATH:/soft/instantclient_10_2    
export TNS_ADMIN=/soft/instantclient_10_2    
export LD_LIBRARY_PATH=/soft/instantclient_10_2    
export NLS_LANG=\"AMERICAN_AMERICA.ZHS16GBK\"    
export ORACLE_HOME=/soft/instantclient_10_2    
EOF

4. 执行如下命令 ,修改 oracle_client so文件权限,修改上下文安全

chcon -t texrel_shlib_t /data/soft/instantclient_10_2/*.so  
chcon -t texrel_shlib_t /data/soft/instantclient_10_2/*.so.*

 

5. 读取环境变量信息

source /etc/profile

 

6. 下载 oci8的压缩包 并进行编译

http://pecl.php.net/package/oci8

 

# 指定php变量 或者在with-php-config 位置替换变量,指定 php-config目录

PHP_DIR=php的安装目录

tar zxvf oci8-2.0.8.tar.gz

cd oci8-2.0.8

phpize

./configure \  
--with-php-config=${PHP_DIR:?NULL}/bin/php-config \    
--with-oci8=shared,instantclient,${ORACLE_HOME:?NULL}

 make

make install

7. 修改 php.ini文件 增加

extension = "oci8.so"

8. 根据实际情况, 重启 php 或者 apache

end

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消