linux php 安装oci8

使用的宝塔面板

下载pecl包

http://pecl.php.net/package/oci8

//php7.4
wget http://pecl.php.net/get/oci8-2.2.0.tgz
tar zxf oci8-2.2.0.tgz
cd oci8-2.2.0
/www/server/php/74/bin/phpize
./configure --with-php-config=/www/server/php/74/bin/php-config --with-oci8=instantclient,/usr/lib/oracle/19.9/client64/lib
make && make install
//Installing shared extensions:     /www/server/php/74/lib/php/extensions/no-debug-non-zts-20190902/
make test

下载instant-client

https://www.oracle.com/database/technologies/instant-client.html

https://www.oracle.com/database/technologies/instant-client/downloads.html

sqlplus不是必须,sqlplus是与oracle交互的客户端工具

原文地址:https://www.cnblogs.com/benlightning/p/15095308.html