PHP で Oracle クエリを実行すると漢字が文字化けする
環境:
Oracle データベースは XP にインストールされています。
バージョン: 10.2.0.3
NLS_LANGUAGE
AMERICAN
NLS_TERRITORY
AMERICA
NLS_CHARACTERSET
ZHS16GBK
1. (クライアントの動作言語環境は SIMPLIFIED CHINESE_CHINA.ZHS16GBK):
1,
cmd
set NLS_LANG=American_America.ZHS16GBK
sqlplus /nolog
conn scott/tiger@salesnew
insert into emp 値('7777','you','good','7709','1-11-2012','5000','800','20');
commit;
select * from emp;
EMPNO ENAME JOB MGR HIREDATE SAL COMM
---------- ---------- -------- - -- -------- ------------ ---------- ----------
DEPTNO
--- -------
7777 こんにちは 7709 01-NOV-12 5000 800
20
結論: 入力したデータベースには問題ありません。
2. PHP は oci
1 を介して oracle を動作させます。PHP の動作および環境は、Windows 2003 x86 Enterprise Edition 簡体字中国語+iis6.0+oracle instantclient-basic-win32-10.2.0.4.zip+ です。 fcgisetup_1 .5_rtw_x86.msi
2. 必要な環境をすべて構成した後、
phpinfo();
?>
をテストすると、すべてが正常であることがわかりました
3. oracle
echo oci_client_version ();
//header('Content-type: text/html; charset=ZHS16GBK');
//set NLS_LANG=American_America.ZHS16GBK
//export NLS_LANG=American_America.ZHS16GBK
//putenv("NLS_LANG=American_America.ZHS16GBK");
$conn = oci_connect('scott) ', 'tiger', '192.168.1.50/salesnew','ZHS16GBK');
if (!$conn) {
$e = oci_error();
trigger_error(htmlentities($e[' message'], ENT_QUOTES), E_USER_ERROR);
}
echo oci_server_version ($conn);
// ステートメントを準備します
$stid = oci_parse($conn, 'SELECT * FROM emp');
if (!$stid) {
$e = oci_error($conn);
trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
// クエリのロジックを実行します
$r = oci_execute($stid);
if (!$r) {
$e = oci_error($stid);
trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
// クエリの結果を取得します
print "
" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") " | n";