0
4

1 回答 1

6

√东西看起来像一个 HTML 实体;所以,让我们尝试去实体化它......

这可以使用html_entity_decodePHP 提供的函数来完成。


例如,使用您提供的字符串,这是一个代码示例:

// So the browser interprets the correct charsert
header('Content-type: text/html; charset=UTF-8');

$input = 'De√ilscrat™';
$output = html_entity_decode($input, ENT_NOQUOTES, 'UTF-8');

var_dump($input, $output);

我得到的输出是这个:

string 'De√ilscrat™' (length=19)
string 'De√ilscrat™' (length=15)

(第一个是原版,第二个是“解码”版)

所以,它似乎可以解决问题;-)

于 2009-09-16T11:18:02.727 回答