标签: php html
我有:[ «» ]我如何将其转换为[ «» ]? 有这个PHP功能吗?
[ «» ]
[ «» ]
答案 0 :(得分:0)
我不明白你的值是否需要在数组中,
如果它们只是变量,你可以这样做:
<?php $from = "«»"; $to = html_entity_decode($from); print($to);