|
這幾天有在用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">
主站蜘蛛池模板:
国产福利视精品永久免费
|
色老板最新网址
|
一区二区视频在线
|
5月丁香婷婷
|
国产视频二区
|
国内自拍视频在线看免费观看
|
成人在线a
|
一区二区三区网站
|
久久精品免视国产
|
依人成人
|
精品久久中文字幕有码
|
国产在线精品美女观看
|
精品国产免费第一区二区三区日韩
|
91大西瓜国产线观看免费
|
欧美人爱视频
|
国产大片中文字幕在线观看
|
国产精品一区二区久久不卡
|
综合刺激网
|
无遮挡一级毛片呦女视频
|
亚洲国产一区二区在线
|
久久98精品久久久久久婷婷
|
国产播放器一区
|
国产一进一出视频网站
|
久久亚洲欧美成人精品
|
亚洲精品图区
|
99ri国产在线|
亚洲激情黄色小说
|
天天摸天天碰中文字幕
|
欧美 xx性 在线
|
在线欧美色
|
日韩激情在线播放
|
国产精品中文字幕在线观看
|
国产成人精品一区二区免费
|
国产精品久久久久久一区二区
|
在线播放亚洲美女视频网站
|
亚洲欧美一区二区三区国产精品
|
中文字幕加勒比
|
91精品久久久久久久久中文字幕
|
免费人成a大片在线观看动漫
|
国产精品亚洲第一区焦香
|
色综合久久综合欧美综合图片
|