Home > Database > Mysql Tutorial > PHP安装Oracle扩展[重新整理]

PHP安装Oracle扩展[重新整理]

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 16:40:29
Original
1281 people have browsed it

环境 System:CentOS 6 PHP: 5.3.28 下载Oracle客户端 32位系统 64位系统 oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpmoracle-instantclient-jdbc-10.2.0.4-1.x86_64.rpmoracle-instantclient-devel-10.2.0.4-1.x86_64.rpmoracle-instantclient-basi

环境

System:CentOS 6
PHP: 5.3.28

下载Oracle客户端

32位系统
64位系统

<code>oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpm
oracle-instantclient-jdbc-10.2.0.4-1.x86_64.rpm
oracle-instantclient-devel-10.2.0.4-1.x86_64.rpm
oracle-instantclient-basic-10.2.0.4-1.x86_64.rpm
</code>
Copy after login

执行安装:

<code># rpm -ivh *.rpm
</code>
Copy after login

下载Oracle的PHP扩展

官方下载

<code>wget http://pecl.php.net/get/oci8-2.0.7.tgz
# tar zxvf oci8-2.0.7.tgz
# cd oci8-2.0.7
# /usr/local/php/bin/phpize
# ./configure --with-php-config=/usr/local/php/bin/php-config --with-oci8=shared,instantclient,/usr/lib/oracle/10.2.0.4/client64/lib/
# make && make install
</code>
Copy after login

更改php.ini

<code># vi /usr/local/php/etc/php.ini
</code>
Copy after login

增加 extension = "oci8.so"

重新启动PHP

<code>ps aux | grep php | grep root
kill -USER2 php_root_pid
</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template