您好,登錄后才能下訂單哦!
這篇文章主要介紹“php7.2如何連接oracle數據庫”,在日常操作中,相信很多人在php7.2如何連接oracle數據庫問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php7.2如何連接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復制代碼
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”
報錯原因上邊已經給出,缺少libiao插件,解決方法:
yum install libaio
(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.
解決方案:
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框架中配置多個數據庫鏈接了。
到此,關于“php7.2如何連接oracle數據庫”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。