php7.2如何连接oracle数据库
本文讲解"php7.2怎么连接oracle数据库",希望能够解决相关问题。
一:下载文件
1 :oracle官网下载:
下载文件(看准了文件名):
oracle-instantclient19.8-basic-19.8.0.0.0-1.x86_64.rpm oracle-instantclient19.8-devel-19.8.0.0.0-1.x86_64.rpm复制代码
2 :PHP官网下载地址:
https://www.php.net/manual/zh/oci8.installation.php
PHP-OCI8插件
下载命令:
wget http://pecl.php.net/get/oci8-2.2.0.tgz
建议将以上三个文件放入/opt目录下,当然,具体放哪是你的自由。能找到就行。
二:安装
1 :安装oracle插件
rpm -ivh oracle-instantclient11.2-basic-11.2.0.4.0-1.x86_64.rpm rpm -ivh oracle-instantclient11.2-devel-11.2.0.4.0-1.x86_64.rpm
可能会报错:
ImportError: libaio.so.1: cannot open shared object file: No such file or directory”
报错原因上边已经给出,缺少libiao插件,解决方法:
yum install libaio
2 :安装OCI8插件
(1):解压tar包:
tar -zxf oci8-2.2.0.tgz
(2):进入解压目录
cd oci8-2.2.0
(3):运行一下命令:
phpize
运行的时候可能会出现一下错误:Can't find PHP headers in /usr/include/php The php-devel package is required for use
解决方案
yum install php72w-devel #注意一下,这条命令取决你安装的PHP版本,我这个命令并不适用所有人
(4):使用$ORACLE_HOME或Instant Client配置软件包
./configure --with-oci8=shared,instantclient,/usr/lib/oracle/<version>/client/lib
或
./configure -with-oci8=shared,$ORACLE_HOME
(5):执行编译安装:
make install
这里可能会报错:
make: *** No rule to make target build', needed by default'. Stop.
解决方案:
1:安装如下配置:
yum -y install make zlib-devel gcc-c++ libtool openssl openssl-devel
2: 重新 configure
./configure
3: 编译
make && make install
(6):配置php.ini
我们在PHP的配置文件php.ini中加上
extension=oci8.so
重启PHP
systemctl restart php-fpm
重启web服务器(nginx、apache等)。
systemctl restart nginx
查看PHPinfo();如下图所示:
然后,你就可以在你的PHP框架中配置多个数据库链接了。
关于 "php7.2怎么连接oracle数据库" 就介绍到此。希望多多支持编程宝库。
本文讲解"php正则能匹配数组吗",希望能够解决相关问题。php正则能匹配数组。在php中,可以利用preg_grep()函数来使用正则表达式匹配数组中的元素;该函数可以搜索数组中的每一个元素,并返回与正则表达式匹配 ...