2012-05-18 121 views
0

我解析XML文件從URL(在下面的代碼中),使用file_get_contents()函數和simpleXML,插入數據到表中,我做得很好,但我有問題編碼(俄語單詞)我得到這個 - >РСРμРЅРšРіРРССРРССС;文件和數據庫編碼設置爲utf-8;xml到php和解析編碼錯誤

require_once 'mysql_connect.php'; 
/** 
* 
* 
*/ 
error_reporting(E_ALL); 
$sql = "CREATE TABLE IF NOT EXISTS `db_countries` (
    `id` int(11) unsigned NOT NULL auto_increment, 
    `countrykey` varchar(255) NOT NULL default '', 
    `countryname` varchar(255) NOT NULL default '', 
    `countrynamelat` varchar(500) NOT NULL default '', 
    PRIMARY KEY (`id`) 
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8"; 

mysql_query($sql); 

$data = file_get_contents("http://www2.turtess-online.com.ua/export/dictionary/countries/"); 
$xml = new SimpleXMLElement($data); 

echo $xml->body->dictionary->element["countryName"]; 

foreach ($xml->body->dictionary->element as $element) { 
    $countryname = mysql_real_escape_string($element["countryName"]); 
    $countrynamelat = mysql_real_escape_string($element["countryNameLat"]); 
    $countrykey  = $element["countryKey"]; 

    if ($countrykey) { 
     $q  = $insert = 'INSERT INTO db_countries (countrykey, countryname, countrynamelat) VALUES ("' . $countrykey . '", "' . $countryname . '", "' . $countrynamelat . '")'; 
     mysql_query($q); 
    } else { 
     echo "not valid key of country"; 
    } 
} 
+0

在瀏覽器view-source中看到的源代碼是'windows-1251',你的db是'utf-8' ...希望在db中插入xml數據之前先運行適當的轉換。 –

回答

1

請確保您也插入了Unicode內容,數據庫字符集不會進行任何「automagic」轉換。

作爲替代方案,我建議utf8_encode($countryname)如:

if ($countrykey) { 
    $q  = $insert = 'INSERT INTO db_countries (countrykey, countryname, countrynamelat) VALUES ("' . $countrykey . '", "' . cp1251_to_utf8($countryname) . '", "' . $countrynamelat . '")'; 
    mysql_query($q); 
} else { 
    echo "not valid key of country"; 
} 

更新:實際上,XML源文件顯示在Windows 1251字符集

UPDATE(2):我測試的代碼針對這個漂亮的小功能,它工作在過去的:)

function cp1251_to_utf8($s) 
    { 
    if ((mb_detect_encoding($s,'UTF-8,CP1251')) == "WINDOWS-1251") 
    { 
    $c209 = chr(209); $c208 = chr(208); $c129 = chr(129); 
    for($i=0; $i<strlen($s); $i++) 
     { 
     $c=ord($s[$i]); 
     if ($c>=192 and $c<=239) $t.=$c208.chr($c-48); 
     elseif ($c>239) $t.=$c209.chr($c-112); 
     elseif ($c==184) $t.=$c209.$c209; 
     elseif ($c==168) $t.=$c208.$c129; 
     else $t.=$s[$i]; 
     } 
    return $t; 
    } 
    else 
    { 
    return $s; 
    } 
    } 

歸功於Martin Petrov

+0

沒有幫助,如果我echo $ element [「countryname」]與utf8_encoding我得到相同的狗屎:P,但沒有我得到正是我需要的,也許在數據庫中的問題 –

+0

@peterneok:更新了代碼,在本地主機上測試成功 –