日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php html转dom,PHP解析html类库simple_html_dom的转码bug

發布時間:2025/4/5 php 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php html转dom,PHP解析html类库simple_html_dom的转码bug 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

這幾天有在用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日在

總結

以上是生活随笔為你收集整理的php html转dom,PHP解析html类库simple_html_dom的转码bug的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。