继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

PHP增加OCI8模块

波斯汪
关注TA
已关注
手记 533
粉丝 67
获赞 430

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

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP