国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > PHP > 正文

PHP解析html類庫simple_html_dom的轉碼bug

2020-03-22 19:30:26
字體:
來源:轉載
供稿:網友
這幾天有在用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 鏈濋槼 /span 公園馬術場舉行的2014浪琴國際馬聯場地障礙世界杯中國聯賽資格賽上,24歲的韓壯壯不僅拿到零罰分的成績 ...第7個出場的 span 鍖椾含 /span 奧運騎手趙志文第一個收獲零罰分,用時77秒07 ...
既成的事實了,證明里頭的轉碼功能沒有處理好。由于我使用這個simple_html_dom只是想要用來構建dom。我并沒有打算花時間去很好地處理這個bug。而是簡單地把復制代碼 代碼如下:
$converted_text = iconv($sourceCharset, $targetCharset, $text);
改成復制代碼 代碼如下:
$converted_text = $text;
就行了。思路就是取消它的轉碼。好吧工作不必糾結,可以繼續了。PHP教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 涪陵区| 冷水江市| 石景山区| 周宁县| 额敏县| 彝良县| 张掖市| 黔江区| 武清区| 洱源县| 巴彦淖尔市| 浦江县| 县级市| 威海市| 双桥区| 恩平市| 新兴县| 咸宁市| 韶关市| 南昌市| 漾濞| 潞西市| 凤阳县| 清徐县| 兴业县| 东宁县| 察隅县| 沭阳县| 阿拉尔市| 兰考县| 申扎县| 马龙县| 阳城县| 澎湖县| 化隆| 阿拉善右旗| 阳西县| 北安市| 宁远县| 枝江市| 仙桃市|