5

我正在尝试检测字符串的字符编码,但无法得到正确的结果。
例如:

$str = "€ ‚ ƒ „ …" ;
$str = mb_convert_encoding($str, 'Windows-1252' ,'HTML-ENTITIES') ;
// Now $str should be a Windows-1252-encoded string.
// Let's detect its encoding:
echo mb_detect_encoding($str,'Windows-1252, ISO-8859-1, UTF-8') ;

该代码输出ISO-8859-1但它应该是Windows-1252.

这有什么问题?

编辑:
更新示例,以响应@raina77ow。

$str = "€‚ƒ„…" ; // no white-spaces
$str = mb_convert_encoding($str, 'Windows-1252' ,'HTML-ENTITIES') ;
$str = "Hello $str" ; // let's add some ascii characters
echo mb_detect_encoding($str,'Windows-1252, ISO-8859-1, UTF-8') ;

我再次得到错误的结果。

4

2 回答 2

2

PHP 中 Windows-1252 的问题在于它几乎永远不会被检测到,因为一旦您的文本包含 0x80 到 0x9f 之外的任何字符,它就不会被检测为 Windows-1252。

这意味着如果您的字符串包含一个普通的 ASCII 字母,例如“A”,甚至是一个空格字符,PHP 会说这不是有效的 Windows-1252,并且在您的情况下,回退到下一个可能的编码,即 ISO 8859-1。这是一个 PHP 错误,请参阅https://bugs.php.net/bug.php?id=64667

于 2014-04-23T13:46:37.333 回答
0

尽管使用 ISO-8859-1 和 CP-1252 编码的字符串具有不同的字节码表示:

<?php
$str = "&euro; &sbquo; &fnof; &bdquo; &hellip;" ;
foreach (array('Windows-1252', 'ISO-8859-1') as $encoding)
{
    $new = mb_convert_encoding($str, $encoding, 'HTML-ENTITIES');
    printf('%15s: %s detected: %10s explicitly: %10s',
        $encoding,
        implode('', array_map(function($x) { return dechex(ord($x)); }, str_split($new))),
        mb_detect_encoding($new),
        mb_detect_encoding($new, array('ISO-8859-1', 'Windows-1252'))
    );
    echo PHP_EOL;
}

结果:

Windows-1252: 802082208320842085 detected:            explicitly: ISO-8859-1
  ISO-8859-1: 3f203f203f203f203f detected:      ASCII explicitly: ISO-8859-1

...从我们在这里可以看到, . 的第二个参数似乎存在问题mb_detect_encoding。使用mb_detect_order代替参数会产生非常相似的结果。

于 2013-04-05T22:01:28.257 回答