這篇文章主要介紹“php7.2如何連接oracle數(shù)據(jù)庫”,在日常操作中,相信很多人在php7.2如何連接oracle數(shù)據(jù)庫問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php7.2如何連接oracle數(shù)據(jù)庫”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務,包含不限于成都網(wǎng)站設計、做網(wǎng)站、成都外貿網(wǎng)站建設公司、和平網(wǎng)絡推廣、成都微信小程序、和平網(wǎng)絡營銷、和平企業(yè)策劃、和平品牌公關、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務,您的肯定,是我們最大的嘉獎;成都創(chuàng)新互聯(lián)為所有大學生創(chuàng)業(yè)者提供和平建站搭建服務,24小時服務熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
下載文件(看準了文件名):
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復制代碼
https://www.php.net/manual/zh/oci8.installation.php
PHP-OCI8插件
下載命令:
wget http://pecl.php.net/get/oci8-2.2.0.tgz
建議將以上三個文件放入/opt目錄下,當然,具體放哪是你的自由。能找到就行。
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”
報錯原因上邊已經(jīng)給出,缺少libiao插件,解決方法:
yum install libaio
(1):解壓tar包:
tar -zxf oci8-2.2.0.tgz
(2):進入解壓目錄
cd oci8-2.2.0
(3):運行一下命令:
phpize
運行的時候可能會出現(xiàn)一下錯誤: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//client/lib
或
./configure -with-oci8=shared,$ORACLE_HOME
(5):執(zhí)行編譯安裝:
make install
這里可能會報錯:
make: *** No rule to make target build', needed by
default'. Stop.
解決方案:
yum -y install make zlib-devel gcc-c++ libtool openssl openssl-devel
./configure
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框架中配置多個數(shù)據(jù)庫鏈接了。
到此,關于“php7.2如何連接oracle數(shù)據(jù)庫”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
當前文章:php7.2如何連接oracle數(shù)據(jù)庫
鏈接URL:http://weahome.cn/article/jojshs.html