您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關php連接不上orcle的問題,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
在php.ini中打開extension=php_oci8擴展,重啟服務。
將php/ext目錄下的php_oci8.dll文件拷貝到system32目錄下,安裝 Oracle9i客戶端精簡版 后重啟電腦
配置:
$config = array ( 'dbconfig' => array ( 'db_host_name' => '192.168.2.197/orcl', 'db_user_name' => 'zbkf', 'db_password' => 'zbkf', ), );
查詢:
//返回值 $arr_result = array(); $arr_result['result'] = 'false'; //true false 為黑名單 $arr_result['callerid'] = $callerid; //取數據庫參數 $db_host_name=$config['dbconfig']['db_host_name']; //'localhost/ORCL'' $db_user_name=$config['dbconfig']['db_user_name'];//'asgr' $db_pwd=$config['dbconfig']['db_password']; //'asgr' //連接Oracle $conn = oci_connect($db_user_name,$db_pwd,$db_host_name);//oci_connect('asgr','asgr','localhost/ORCL'); if (!$conn) { $e = oci_error(); //print htmlentities($e['message']); //WriteLog("連接Oracle時出錯,oci_connect(".$db_user_name.",".$db_pwd.",".$db_host_name.") ".htmlentities($e['message'])); $arr_result['result'] = 'false'; echo json_encode($arr_result); //默認為不是黑名單 return; } else { //echo("連接成功!"); //$select = 'SELECT BL_TEL FROM CC_BLACKLIST'; // 查詢語句 $select = "Select count(BL_Tel) from CC_BlackList where BL_Tel like '%" . $callerid . "%' and BL_SFQY='0' "; //WriteLog($select); $result_rows = oci_parse($conn, $select); // 配置SQL語句,執行SQL $row_count = oci_execute($result_rows, OCI_DEFAULT); // 行數 OCI_DEFAULT表示不要自動commit //echo($row_count); if(!$row_count) { //沒有行 $e = oci_error($result_rows); //echo htmlentities($e['message']); //WriteLog("查詢時出錯或沒有行!,oci_connect(".$db_user_name.",".$db_pwd.",".$db_host_name.") ". $select." ".htmlentities($e['message'])); $arr_result['result'] = 'false'; echo json_encode($arr_result); //默認為不是黑名單 } /* //取每行每列值 while($row = oci_fetch_array($result_rows, OCI_RETURN_NULLS)) { if($row[0]==$callerid){ $arr_result['result']='true'; echo json_encode($arr_result); //是黑名單 exit; } } */ $count=0; while($row = oci_fetch_array($result_rows, OCI_RETURN_NULLS)) { $count=$row[0]; break; } //WriteLog($count); if($count>=1){ $arr_result['result']='true'; } else { $arr_result['result']='false'; } echo json_encode($arr_result); //默認為不是黑名單 }
以上就是php連接不上orcle的問題,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。