|
這幾天有在用simple_html_dom抓一些文章。不同網站的編碼在國內基本上是gbk gb2312 utf-8。而以gb2312和utf-8居多。
我這一版的simple_html_dom有一個方法 convert_text 是這個樣子的。
復制代碼 代碼如下:
// PaperG - Function to convert the text from one character set to another if the two sets are not the same.
function convert_text($text)
{
global $debug_object;
if (is_object($debug_object)) {$debug_object->debug_log_entry(1);}
$converted_text = $text;
$sourceCharset = "";
$targetCharset = "";
if ($this->dom)
{
$sourceCharset = strtoupper($this->dom->_charset);
$targetCharset = strtoupper($this->dom->_target_charset);
}
if (is_object($debug_object)) {$debug_object->debug_log(3, "source charset: " . $sourceCharset . " target charaset: " . $targetCharset);}
if (!empty($sourceCharset) && !empty($targetCharset) && (strcasecmp($sourceCharset, $targetCharset) != 0))
{
// Check if the reported encoding could have been incorrect and the text is actually already UTF-8
if ((strcasecmp($targetCharset, 'UTF-8') == 0) && ($this->is_utf8($text)))
{
$converted_text = $text;
}
else
{
$converted_text = iconv($sourceCharset, $targetCharset, $text);
}
}
// Lets make sure that we don't have that silly BOM issue with any of the utf-8 text we output.
if ($targetCharset == 'UTF-8')
{
if (substr($converted_text, 0, 3) == "/xef/xbb/xbf")
{
$converted_text = substr($converted_text, 3);
}
if (substr($converted_text, -3) == "/xef/xbb/xbf")
{
$converted_text = substr($converted_text, 0, -3);
}
}
return $converted_text;
}
來看這一行:
復制代碼 代碼如下:
$converted_text = iconv($sourceCharset, $targetCharset, $text);
會引起轉碼不正確。比如會把gb2312的文字轉成:
復制代碼 代碼如下:
4月26日在<span style="color:#C03">
主站蜘蛛池模板:
欧美日韩精品在线免费观看
|
一区二区国产精品
|
精品国产乱码一区二区三区a
|
夜操
|
亚洲国产成人精品女人久久久
|
久久亚洲一区二区三区四区
|
日韩区|
国产精品免费在线
|
久久久精品网
|
性色的免费视频
|
午夜av电影
|
亚洲一区国产精品
|
亚洲精品日本
|
亚洲国产欧美91
|
成人婷婷
|
日韩欧美中文在线
|
免费观看黄a一级视频
|
国产视频一二三区
|
美女视频三区
|
国产精品高潮呻吟久久久久
|
国产精品99一区二区
|
亚洲一二三在线
|
国产在线观看不卡一区二区三区
|
免费黄色大片
|
日日干夜夜草
|
日韩综合
|
欧美激情一区
|
国产精品久久久久久久久污网站
|
国产免费一区二区三区免费视频
|
欧美天堂|
欧美乱大交xxxxx另类电影
|
麻豆av在线免费观看
|
欧美成人免费在线视频
|
91小视频在线|
欧美一a一片一级一片
|
欧美亚洲在线视频
|
国产成人在线一区二区
|
精品久久久久久国产
|
一区二区在线观看免费视频
|
一区二区三区日
|
免费成人高清在线视频
|