|
這幾天有在用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">
主站蜘蛛池模板:
99视频这里只有精品国产
|
成年美女黄网站色app
|
亚洲天堂999
|
5G在线观看免费年龄确认18
|
99久久久久亚洲AV无码
|
好紧好湿太硬了我太爽了文字
|
狼人大香伊蕉国产WWW亚洲
|
九九热只有精品
|
青青视频国产色偷偷
|
日本69xxxxx|
亚洲熟少妇在线播放999
|
小蝌蚪视频在线观看免费观看WWW
|
人C交ZZZ0OOZZZ000|
亚洲AV永久无码精品澳门
|
交换年轻夫妇HD中文字幕
|
亚洲欧美成人
|
三级网站午夜三级
|
99精品视频免费在线观看
|
国产精品久久久精品a级小说
|
福利片福利一区二区三区
|
亚洲高清一区二区三区电影
|
久久精品一区二区免费看
|
99久久免费视频6
|
亚洲精品一二三
|
蜜柚视频在线观看全集免费观看
|
99视频在线观看视频
|
四虎永久在线精品国产
|
免费一级特黄欧美大片久久网
|
日本熟妇乱妇熟色A片蜜桃亚洲
|
亚洲精品成人久久久影院
|
欧美丰满少妇久久无码精品
|
豆奶视频在线高清观看
|
手机在线观看无码日韩视频
|
国产叼嘿久久精品久久
|
亚洲欧美高清在线精品一区
|
成人区在线观看免费视频
|
九九热免费在线观看
|
久久毛片网站
|
国产精品视频在线自在线
|
草莓湿漉漉是好事还是恶性
|
亚洲国产欧美另类
|