PHP下的Oracle客户端扩展(OCI8)安装教程

2015-01-24信息快讯网

这篇文章主要介绍了PHP下的Oracle客户端扩展(OCI8)安装教程,本文在Linux系统中实现,OCI8是用来连接Oracle数据库的PHP扩展模块,需要的朋友可以参考下

最近的项目需要用php访问oracle数据库,不得不在linux下给php安装oci8扩展。php也可以使用pdo访问oracle数据库,但还是需要安装客户端。

首先到oracle官网的这个页面下载相关的文件,注意要连数据库服务器的版本,一定要对应,否则安装成功也会连不上,同时也要区分32位、64位服务器,比如我要连的数据库服务器是oracle10.2.0.4,64位主机,那么我要下载下面三个文件:

oracle-instantclient-basic-10.2.0.4-1.x86_64.rpm
oracle-instantclient-devel-10.2.0.4-1.x86_64.rpm
oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpm

1.用以下命令安装

# rpm -ivh oracle-instantclient-basic-10.2.0.4-1.x86_64.rpm oracle-instantclient-devel-10.2.0.4-1.x86_64.rpm    oracle-instantclient-sqlplus-10.2.0.4-1.x86_64.rpm

2.安装OCI8 PHP扩展

# yum install libaio
# cd ~
# wget http://pecl.php.net/get/oci8-1.3.5.tgz

3.然后执行命令

# tar zxvf oci8-1.3.5.tgz
# cd oci8-1.3.5/
# /usr/local/php5/bin/phpize  CFLAGS=/usr/lib/oracle/11.2/client64/ CXXFLAGS=/usr/lib/oracle/11.2/client64/
# ./configure --with-php-config=/usr/local/php5/bin/php-config --with-oci8=instantclient,/usr/lib/oracle/11.2/client64/lib/
# make
# make install(这里多运行几次,直到出现如下提示)
 
[root@webserver02 oci8-1.3.5]# make install
/bin/sh /root/oci8-1.3.5/libtool --mode=install cp ./oci8.la /root/oci8-1.3.5/modules
cp ./.libs/oci8.so /root/oci8-1.3.5/modules/oci8.so
cp ./.libs/oci8.lai /root/oci8-1.3.5/modules/oci8.la
PATH="$PATH:/sbin" ldconfig -n /root/oci8-1.3.5/modules
----------------------------------------------------------------------
Libraries have been installed in:
   /root/oci8-1.3.5/modules

If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- Installing shared extensions: /usr/local/php5/lib/php/extensions/no-debug-zts-20090626/ # cd /usr/local/php5/lib

4.创建ext目录

# mkdir ext/

把oci8.so文件拷贝到php.ini 的ext目录里面
# cp /root/oci8-1.3.5/modules/oci8.so /usr/local/php5/lib/ext/

5.在php.ini里面加上extension=oci8.so

如下:

extension_dir = "/usr/local/php5/lib/ext"
extension = "oci8.so"
session.save_path = "/tmp/php"
oci8.privileged_connect = on

重启apache服务:

/usr/local/apache2/bin/apachectl stop
/usr/local/apache2/bin/apachectl start

刷新测试页面。发现oci8出现了,则大功告成.

php正则匹配html中带class的div并选取其中内容的方法
CI框架中通过hook的方式实现简单的权限控制
CI框架中site_url()和base_url()的区别
PHP中使用CURL获取页面title例子
PHP中使用SimpleXML检查XML文件结构实例
php中fsockopen用法实例
php中Socket创建与监听实现方法
php中socket通信机制实例详解
php使用google地图应用实例
php连接oracle数据库及查询数据的方法
PHP中require和include路径问题详解
php中heredoc与nowdoc介绍
php提示Failed to write session data错误的解决方法
CI框架中cookie的操作方法分析
thinkphp文件处理类Dir.class.php的用法分析
CI框架给视图添加动态数据
使用PHP Socket 编程模拟Http post和get请求
PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结
ci检测是ajax还是页面post提交数据的方法
Linux下PHP安装mcrypt扩展模块笔记
CentOS 6.3下安装PHP xcache扩展模块笔记
字符串长度函数strlen和mb_strlen的区别示例介绍
php中的mongodb select常用操作代码示例
CodeIgniter错误mysql_connect(): No such file or directory解决方法
浅析PHP中strlen和mb_strlen的区别
destoon供应信息title调用出公司名称的方法
Linux下PHP连接Oracle数据库
Win7 64位系统下PHP连接Oracle数据库
PHP中使用localhost连接Mysql不成功的解决方法
PHP JSON出错:Cannot use object of type stdClass as array解决方法
php socket实现的聊天室代码分享
php与flash as3 socket通信传送文件实现代码
PHP的反射类ReflectionClass、ReflectionMethod使用实例
php CI框架插入一条或多条sql记录示例
php ci框架中加载css和js文件失败的原因及解决方法
Yii使用CLinkPager分页实例详解
PHP的fsockopen、pfsockopen函数被主机商禁用的解决办法
PHP关于htmlspecialchars、strip_tags、addslashes的解释
php socket客户端及服务器端应用实例
CI框架在CLI下执行占用内存过大问题的解决方法
CI框架自动加载session出现报错的解决办法
©2014-2024 dbsqp.com