当前位置:Gxlcms > php框架 > Win7 64位系统下PHP连接Oracle数据库

Win7 64位系统下PHP连接Oracle数据库

时间:2021-07-01 10:21:17 帮助过:15人阅读

下面讲下配置过程

一、下载oracle instantclient

下载地址:http://www.oracle.com/technetwork/topics/winx64soft-089540.html

下载 instantclient-basic-windows.x64-11.2.0.4.0

解压路径:D:\Program Files (x86)\Oracle64Client\instantclient_11_2

*注:客户端需要对应数据库版本。

二、配置系统环境变量

在PATH环境变量后加入:;D:\Program Files (x86)\Oracle64Client\instantclient_11_2

三、配置PHP支持OCI扩展

修改配置文件php.ini

开启配置如下

四、重启Apache服务测试

使用探针函数phpinfo()查看扩展是否开启,如果出现下图说明扩展开启

五、测试数据库连接

在站点根目录编写oracle.php,我连接的是虚拟机CentOS中的Oralce数据库

代码如下:

  1. <?php
  2. $conn = ocilogon('test','test','192.168.23.131:1521/dev');
  3. if (!$conn)
  4. {
  5. $Error = oci_error();
  6. print htmlentities($Error['message']);
  7. exit;
  8. }
  9. else
  10. {
  11. echo "Connected Oracle Successd!"."<br>";
  12. ocilogoff($conn);
  13. }
  14. ?>

浏览器地址栏输入 http://localhost/oracle.php

显示Connected Oracle Successd!说明数据库连接成功。

人气教程排行