我开发了一个PHP脚本,应该连接到一个普遍的数据库系统:
$connection_string = "Driver={Pervasive ODBC Client Interface};ServerName=127.0.0.1;dbq=@test";
$conn = odbc_connect($connection_string,"administrator","password");
如果我执行查询,返回的数据不是UTF8。mb_detect_encoding
告诉我,编码是ASCII。我试图通过icon v
转换数据,但它不起作用。所以我尝试了类似的东西来更改脚本连接后的编码:
odbc_exec($conn, "SET NAMES 'UTF8'");
odbc_exec($conn, "SET client_encoding='UTF-8'");
但是没有用!有人能帮我吗?谢谢。
------------------------------ edit -------------------------------
这是完整的脚本,因为到目前为止没有任何工作:
class api {
function doRequest($Url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $Url);
curl_setopt($ch, CURLOPT_REFERER, "http://www.example.org/yay.htm");
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_ENCODING, 'UTF-8');
$output = curl_exec($ch);
curl_close($ch);
}
}
$connection_string = "Driver={Pervasive ODBC Client Interface};ServerName=127.0.0.1;dbq=@test;Client_CSet=UTF-8;Server_CSet=UTF-8";
$conn = odbc_connect($connection_string,"administrator","xxx");
if ($conn) {
$sql = "SELECT field FROM table where primaryid = 102";
$cols = odbc_exec($conn, $sql);
while( $row = odbc_fetch_array($cols) ) {
$api = new api();
// --- 1 ---
$api->doRequest("http://example.de/api.html?value=" . @urlencode($row["field"]));
// --- 2 ---
$api->doRequest("http://example.de/api.html?value=" . $row["field"]);
// --- 3 ---
$api->doRequest("http://example.de/api.html?value=" . utf8_decode($row["field"]));
}
}
服务器日志显示如下:
--- 1 --- [24/May/2016:14:05:07 +0200] "GET /api.html?value=Talstra%E1e+7++++++++++++++++++++++++++++++++++++++++++++++++ HTTP/1.1" 200 93 "http://www.example.org/yay.htm" "MozillaXYZ/1.0"
--- 2 --- [24/May/2016:11:31:10 +0200] "GET /api.html?value=Talstra\xe1e 7 HTTP/1.1" 200 83 "http://www.example.org/yay.htm" "MozillaXYZ/1.0"
--- 3 --- [24/May/2016:14:05:07 +0200] "GET /api.html?value=Talstra?e 7 HTTP/1.1" 200 93 "http://www.example.org/yay.htm" "MozillaXYZ/1.0"
\xe1代表á,但它应该是ρ(德语字符)
您的数据库是ASCII扩展的,而不是“只是ASCII”
线索就在这里:
如果您的问题中的以下内容实际上是正确的:
如果我执行查询,返回的数据不是UTF8。
因为数据不在UTF8中。
您数据库中的是扩展ASCII字符。常规ASCII是UTF8的子集,最多128个字符,扩展不是。
如果你试过这个,它不会工作;
iconv("ASCII", "UTF-8", $string);
你可以先试试这个,因为它的侵入性最小,看起来mysql支持cp850,所以你可以在脚本的顶部试试这个:
odbc_exec($conn, "SET NAMES 'CP850'");
odbc_exec($conn, "SET client_encoding='CP850'");
如果您的原始断言是正确的,这可能会奏效:
iconv("CP437", "UTF-8", $string);
或者这个,我最初的预感,您的数据库是latin-1:
iconv("CP850", "UTF-8", $string);
IBMCP850具有ISO-8859-1(latin-1)所具有的所有可打印字符,只是在ISO-8859-1中为223。
您可以在此页面的表格中看到ρ的位置:https://en.wikipedia.org/wiki/Western_Latin_character_sets_(计算)
作为现有代码的替代,在您的问题中,看看这是否有效:
$api->doRequest("http://example.de/api.html?value=" . $iconv("CP850", "UTF-8",$row["field"]));
// --- 2 ---
$api->doRequest("http://example.de/api.html?value=" . $iconv("CP850", "UTF-8",$row["field"]));
// --- 3 ---
$api->doRequest("http://example.de/api.html?value=" . $iconv("CP850", "UTF-8",$row["field"]));
如果您的整个数据库采用相同的编码,这将起作用。
如果您的数据库没有始终如一地遵循一种编码,则可能没有一个答案是完全正确的。如果是这种情况,您也可以在此处尝试答案,但使用不同的编码:
拉丁文-1/UTF-8编码php
// If it's not already UTF-8, convert to it
if (mb_detect_encoding($row["field"], 'utf-8', true) === false) {
$row["field"] = mb_convert_encoding($row["field"], 'utf-8', 'iso-8859-1');
}
我真正正确的答案是,如果可以的话,正确插入UTF8中的数据,这样你就不会遇到这样的问题。当然,这并不总是可能的。
参考:
强制编码从US-ASCII到UTF-8(icon)
尝试将Client_CSet=UTF-8
添加到连接字符串中。
如果您知道服务器上的编码,请尝试将其添加到您的连接字符串中,
Client_CSet=UTF-8;Server_CSet=SERVER_ENCODING // for example WINDOWS-1251