13

我正在尝试将编码的长破折号从数字实体解码为字符串,但似乎我找不到可以正确执行此操作的函数。

我发现最好的是 mb_decode_numericentity(),但是,由于某种原因,它无法解码长破折号和其他一些特殊字符。

$str = '–';

$str = mb_decode_numericentity($str, array(0xFF, 0x2FFFF, 0, 0xFFFF), 'ISO-8859-1');

这将返回“?”。

任何人都知道如何解决这个问题?

4

2 回答 2

19

以下代码片段(大部分是从这里窃取并改进的)将适用于文字、十进制数字和数字十六进制实体:

header("content-type: text/html; charset=utf-8");

/**
* Decodes all HTML entities, including numeric and hexadecimal ones.
* 
* @param mixed $string
* @return string decoded HTML
*/

function html_entity_decode_numeric($string, $quote_style = ENT_COMPAT, $charset = "utf-8")
{
$string = html_entity_decode($string, $quote_style, $charset);
$string = preg_replace_callback('~&#x([0-9a-fA-F]+);~i', "chr_utf8_callback", $string);
$string = preg_replace('~&#([0-9]+);~e', 'chr_utf8("\\1")', $string);
return $string; 
}

/** 
 * Callback helper 
 */

function chr_utf8_callback($matches)
 { 
  return chr_utf8(hexdec($matches[1])); 
 }

/**
* Multi-byte chr(): Will turn a numeric argument into a UTF-8 string.
* 
* @param mixed $num
* @return string
*/

function chr_utf8($num)
{
if ($num < 128) return chr($num);
if ($num < 2048) return chr(($num >> 6) + 192) . chr(($num & 63) + 128);
if ($num < 65536) return chr(($num >> 12) + 224) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128);
if ($num < 2097152) return chr(($num >> 18) + 240) . chr((($num >> 12) & 63) + 128) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128);
return '';
}


$string ="&#x201D;"; 

echo html_entity_decode_numeric($string);

欢迎提出改进建议。

于 2011-06-05T13:49:58.530 回答
1

mb_decode_numericentity不处理十六进制,只处理十进制。您是否获得了预期的结果:

$str = '–';

$str = mb_decode_numericentity ( $str , Array(255, 3145727, 0, 65535) , 'ISO-8859-1');

您可以使用hexdec将十六进制转换为十进制。

此外,出于好奇,以下工作是否有效:

$str = '&#8211;';

 $str = html_entity_decode($str);
于 2010-05-04T11:31:49.783 回答