[1]window10系統(tǒng)安裝
步驟:
1驳阎、安裝apache和php芥驳。
2闸餐、安裝Oracle 11g Instant Client(或其他版本)。
2个盆、在php.ini中打開兩個擴展脖岛。
extension=pdo_oci
extension=oci8_12c
3、將php/ext目錄下的php_oci8.dll文件拷貝到system32目錄下颊亮。
4柴梆、編寫測試腳本測試。
5.打開C:\Windows\System32目錄终惑,添加oraociei11.dll和oci8.dll文件(我們?nèi)ス倬W(wǎng)下載的instantclient-basic文件夾里找)
Instant Client Downloads for Microsoft Windows (x64) 64-bit中下載了instantclient-basic-windows.x64-11.2.0.4.0.zip
1绍在、oracle官網(wǎng)下載instantclient-basic(下載這個版本Basic Package)
說明 | 備注 | 查詢方法 |
---|---|---|
11.2.0.4.0版本號 | 對應(yīng)線上數(shù)據(jù)庫oracle版本號; | 查詢命令 select * from v$version 或select banner from sys.v_$version; |
64 | 對應(yīng)php運行系統(tǒng)64位 | 具體用php函數(shù)phpinfo()查看 |
如果還沒連接成功 可能需要去php官網(wǎng)pecl庫下載對應(yīng)幾個dll文件
(下載地址:https://windows.php.net/downloads/pecl/releases/oci8/2.2.0/php_oci8-2.2.0-7.3-nts-vc15-x64.zip)
php.ini 添加如下幾行 有什么添什么逐個測試即可。
php拓展目錄D:\phpstudy_pro\Extensions\php\php7.3.4nts\ext(把這個文件復(fù)制到這個文件下下)
extension=php_oci8.dll
extension=php_pdo_oci.dll
extension=php_oci8_11g.dll
extension=php_oci8_12c.dll
php使用實例
thinkphp6 數(shù)據(jù)庫配置
.env 配置如下
APP_DEBUG = true
[APP]
DEFAULT_TIMEZONE = Asia/Shanghai
[DATABASE]
TYPE = mysql
HOSTNAME = 127.0.0.1
DATABASE = tp6vue
USERNAME = tp6vue
PASSWORD = tp6vue
HOSTPORT = 3306
PREFIX = tp_
CHARSET = utf8
DEBUG = true
#庫2配置
[DATABASE2]
TYPE = oracle
HOSTNAME = 39.103.157.72
DATABASE = hydee
USERNAME = h2
PASSWORD = "yhui!YA0*2006"
HOSTPORT = 1521
PREFIX =
CHARSET = utf8
DEBUG = true
[LANG]
default_lang = zh-cn
database.php 配置如下:
<?php
use think\facade\Env;
return [
// 默認使用的數(shù)據(jù)庫連接配置
'default' => Env::get('database.driver', 'mysql'),
// 自定義時間查詢規(guī)則
'time_query_rule' => [],
// 自動寫入時間戳字段
// true為自動識別類型 false關(guān)閉
// 字符串則明確指定時間字段類型 支持 int timestamp datetime date
'auto_timestamp' => true,
// 時間字段取出后的默認時間格式
'datetime_format' => 'Y-m-d H:i:s',
// 數(shù)據(jù)庫連接配置信息
'connections' => [
'mysql' => [
// 數(shù)據(jù)庫類型
'type' => Env::get('database.type', 'mysql'),
// 服務(wù)器地址
'hostname' => Env::get('database.hostname', '127.0.0.1'),
// 數(shù)據(jù)庫名
'database' => Env::get('database.database', 'tp6vue'),
// 用戶名
'username' => Env::get('database.username', 'tp6vue'),
// 密碼
'password' => Env::get('database.password', 'tp6vue'),
// 端口
'hostport' => Env::get('database.hostport', '3306'),
// 數(shù)據(jù)庫連接參數(shù)
'params' => [],
// 數(shù)據(jù)庫編碼默認采用utf8
'charset' => Env::get('database.charset', 'utf8'),
// 數(shù)據(jù)庫表前綴
'prefix' => Env::get('database.prefix', 'tp_'),
// 數(shù)據(jù)庫部署方式:0 集中式(單一服務(wù)器),1 分布式(主從服務(wù)器)
'deploy' => 0,
// 數(shù)據(jù)庫讀寫是否分離 主從式有效
'rw_separate' => false,
// 讀寫分離后 主服務(wù)器數(shù)量
'master_num' => 1,
// 指定從服務(wù)器序號
'slave_no' => '',
// 是否嚴格檢查字段是否存在
'fields_strict' => true,
// 是否需要斷線重連
'break_reconnect' => false,
// 監(jiān)聽SQL
'trigger_sql' => true,
// 開啟字段緩存
'fields_cache' => false,
// 字段緩存路徑
'schema_cache_path' => app()->getRuntimePath() . 'schema' . DIRECTORY_SEPARATOR,
], 'oracle' => [
// 數(shù)據(jù)庫類型
'type' => Env::get('database2.type', 'oracle'),
// 服務(wù)器地址
'hostname' => Env::get('database2.hostname', '10.111.117.72'),
// 數(shù)據(jù)庫名
'database' => Env::get('database2.database', 'xxxxxx'),
// 用戶名
'username' => Env::get('database2.username', 'h2'),
// 密碼
'password' => Env::get('database2.password', 'xxxxxx'),
// 端口
'hostport' => Env::get('database2.hostport', '1521'),
// 數(shù)據(jù)庫連接參數(shù)
'params' => [],
// 數(shù)據(jù)庫編碼默認采用utf8
'charset' => Env::get('database2.charset', 'utf8'),
// 數(shù)據(jù)庫表前綴
'prefix' => Env::get('database2.prefix', ''),
// 數(shù)據(jù)庫部署方式:0 集中式(單一服務(wù)器),1 分布式(主從服務(wù)器)
'deploy' => 0,
// 數(shù)據(jù)庫讀寫是否分離 主從式有效
'rw_separate' => false,
// 讀寫分離后 主服務(wù)器數(shù)量
'master_num' => 1,
// 指定從服務(wù)器序號
'slave_no' => '',
// 是否嚴格檢查字段是否存在
'fields_strict' => true,
// 是否需要斷線重連
'break_reconnect' => false,
// 監(jiān)聽SQL
'trigger_sql' => true,
// 開啟字段緩存
'fields_cache' => false,
// 字段緩存路徑
'schema_cache_path' => app()->getRuntimePath() . 'schema' . DIRECTORY_SEPARATOR,
],
// 更多的數(shù)據(jù)庫配置信息
],
];
[2]Centos7 php7.3安裝oracle擴展
docker 部署的lnmp環(huán)境偿渡,因項目需要連接oracle數(shù)據(jù)庫臼寄,故需要增加相對應(yīng)的擴展
一、系統(tǒng)環(huán)境
Docker 溜宽、Centos7.6 脯厨、php7.3
二、準備工作
ORACLE客戶端軟件下載
https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html
這就是oracle客戶端現(xiàn)在地址坑质,點我合武、戳我、就行了
三涡扼、安裝
下載后上傳至系統(tǒng)指定位置稼跳,本文上傳到 /usr/local/src 下面了。
執(zhí)行安裝
cd /usr/local/src
##解壓客戶端 解壓后會得到 `instantclient_12_1` 文件夾
unzip instantclient-basic-linux.x64-12.1.0.2.0.zip
unzip instantclient-sdk-linux.x64-12.1.0.2.0.zip
##將文件夾改名
mv ./instantclient_12_1 ./instantclient
cd instantclient
## 創(chuàng)建連接
ln -s libnnz12.so libnnz.so
ln -s libclntsh.so.12.1 libclntsh.so
ln -s libocci.so.12.1 libocci.so
## 安裝OCI8擴展
cd ../
tar -zxvf oci8-2.2.0.tgz
cd oci8-2.2.0
/usr/local/php7/bin/phpize
./configure --with-php-config=/usr/local/php7/bin/php-config \
--with-oci8=instantclient,/usr/local/src/instantclient \
make && make install
## 安裝pdo-oci擴展
##該擴展在php源碼擴展包中存在無需額外下載 直接使用即可
cd /usr/local/src
tar -jxvf php-7.3.3.tar.bz2
cd ./php-7.3.3/ext/pdo_oci
/usr/local/php7/bin/phpize
./configure --with-php-config=/usr/local/php7/bin/php-config \
--with-pdo-oci=instantclient,/usr/local/src/instantclient \
make && make install
添加phpini擴展支持
extension=oci8.so
extension=pdo_oci.so
顯示如下則說明安裝成功
四吃沪、測試效果
編寫測試代碼
public function getUser(){
$data =[];
$sql="select *from inf_vd_patient_visit where sJZH='00082815'";
$conn = oci_connect('oral','xxxxx','10.87.230.205/orcl','UTF8');
$stid=oci_parse($conn,$sql);
if($stid){
$result=oci_execute($stid);
}
while (($row = oci_fetch_assoc($stid)) != false) {
$data[] = $row;
}
var_dump($data);
oci_free_statement($stid);
oci_close($conn);
}
預(yù)覽結(jié)果
資料下載
關(guān)注公眾號“扣丁曼” 回復(fù) “oci” 獲取汤善。