|
這幾天有在用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">
主站蜘蛛池模板:
bl(高h)文|
秋霞电影网午夜一级鲁丝片
|
一区二区三区无码高清视频
|
国产麻豆福利AV在线观看
|
手机在线播放成人亚洲影院电影
|
好大好爽CAO死我了BL
|
秋霞网站一级一片
|
亚洲成a人片777777久久
|
亚洲人成网77777色在线播放
|
男男女女爽爽爽视频免费
|
成人毛片18岁女人毛片免费看
|
国产精品亚洲国产三区
|
老师掀开短裙让我挺进动态
|
国产国拍亚洲精品av麻豆
|
绿巨人www在线观看
绿巨人www
|
天天影视香色欲综合网
|
免费的av不用播放器的
|
国产不卡无码高清视频
|
日本亚洲精品无码区国产电影
|
花蝴蝶免费观看影视
|
做你的爱人BD日本
|
免费看毛片网
|
99久久国产露脸精品国产吴梦梦
|
久久水蜜桃亚洲AV无码精品偷窥
|
手机毛片在线
|
久久久无码精品亚洲日韩按摩
|
人人看人人看
|
国产精品日本一区二区在线播放
|
最近2019年日本中文免费字幕
|
麻豆精选2021|
欧美最猛黑人AAAAA片
|
第七色 夜夜撸
|
2019久久视频这里有精品15
|
成人国产一区
|
超碰免费碰免费视频
|
男人吃奶摸下挵进去啪啪
|
范冰冰hdxxxx
|
九九热这里有精品
|
中文日韩亚洲欧美字幕
|
午夜色情影院色a国产
|
色婷婷五月综合久久中文字幕
|