如何将html数字字符引用转换为字符?

时间:2014-03-17 09:00:54

标签: php html

我有:[ «» ]我如何将其转换为[ «» ]? 有这个PHP功能吗?

1 个答案:

答案 0 :(得分:0)

我不明白你的值是否需要在数组中,

如果它们只是变量,你可以这样做:

<?php
$from = "&#171;&#187;";
$to = html_entity_decode($from);
print($to);