|
這幾天有在用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">
主站蜘蛛池模板:
国产亚洲欧洲国产综合一区
|
一本久道久综合久久鬼色
|
亚洲国产成人在线
|
国产大片中文字幕在线观看
|
91精品久久一区二区三区
|
丁香六月婷婷综合
|
日韩午夜高清福利片在线观看
|
成人精品免费网站
|
91精品国产综合久久久久
|
女人洗澡一级特黄毛片
|
国产福利在线观看永久免费
|
涩涩涩在线视频
|
精品乱人伦一区二区三区
|
伊人网综合在线
|
国产欧美一区二区精品性色99
|
嫩草影院一区
|
亚洲伊人色图
|
91视频国产91久久久
|
国产精品久久一区二区三区
|
激情视频激情图片激情小说
|
dyav午夜片
|
伊人网中文字幕
|
www狠狠干|
五月停停|
狠狠亚洲|
偷自在线
|
波多野结衣精品一区二区三区
|
日韩欧美不卡片
|
五月天激情婷婷
|
国内自拍视频在线看免费观看
|
大香网伊人久久综合观看
|
色成年激情久久综合
|
日韩中文字幕免费
|
浮力影院第一页小视频国产在线观看免费
|
91精品福利|
日本欧美一区二区三区视频
|
黑人网站
|
久久中文字幕视频
|
在线播放一区二区精品产
|
国产一区二区不卡视频
|
亚洲一区在线免费
|