PHP提供Oracle支持增加oci8模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP提供Oracle支持增加oci8模块相关的知识,希望对你有一定的参考价值。

环境: CentOS7 x86_64

        php 7.1.2(安装路径:/usr/local/php7.1.2)

        Oracle 11G R2



1.下载Oracle客户端:(http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html)

instantclient-basic-linux.x64-11.2.0.4.0.zip

instantclient-sdk-linux.x64-11.2.0.4.0.zip


2.下载php oracle模块

wget http://pecl.php.net/get/oci8-2.1.4.tgz


3.安装依赖包

yum -y install autoconf automake gcc libaio-devel unzip


4.安装

cd ~
unzip instantclient-basic-linux.x64-11.2.0.4.0.zip
unzip instantclient-sdk-linux.x64-11.2.0.4.0.zip
cp instantclient_11_2/libclntsh.so.11.1 instantclient_11_2/libclntsh.so
tar zxf oci8-2.1.4.tgz
cd oci8-2.1.4
/usr/local/php7.1.2/bin/phpize
./configure --with-php-config=/usr/local/php7.1.2/bin/php-config --with-oci8=instantclient,/instantclient_11_2 
make && make install
echo ‘extension = "oci8.so"‘>>/usr/local/php7.1.2/etc/php.ini


5.测试

/usr/local/php7.1.2/bin/php -m |grep oci
oci8
<?php
$conn = oci_connect(‘username‘,‘password‘,‘192.168.1.100/ORCL‘);
$sql = "select * from table_name "; 
$ora_test = oci_parse($conn,$sql);
oci_execute($ora_test,OCI_DEFAULT);
while($r=oci_fetch_row($ora_test))
{ 
echo $r[0]; 
echo "<BR>";   
}
?>



本文出自 “枫林晚” 博客,请务必保留此出处http://fengwan.blog.51cto.com/508652/1934773

以上是关于PHP提供Oracle支持增加oci8模块的主要内容,如果未能解决你的问题,请参考以下文章

CENTOS6下PHP 安装 oci8 pdo-oci

在 Opensuse 环境中安装 oracle 和 php oracle 扩展(OCI8)

php5.6配置oracle数据库扩展 oci8(windows7系统64位)

sh oracle-php56-oci8.sh

PHP安装OCI8扩展

php配置oci8